msong97 commited on
Commit
01302e8
·
1 Parent(s): c082fb3

text-box limited to 1 line

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -190,11 +190,11 @@ with gr.Blocks(title=title, theme=gr.themes.Glass()) as interface:
190
  load_button = gr.Button("Run on index image from dataset", size='md')
191
  load_random_button = gr.Button("Run on random image from dataset", size='md')
192
  with gr.Column(scale=1, min_width=160):
193
- observed_metrics = gr.Textbox(label="Observed metric", lines=1, key=5)
194
  with gr.Column(scale=1, min_width=160):
195
- out_a_metric = gr.Textbox(label="RAM output metrics", lines=1, key=6)
196
  with gr.Column(scale=1, min_width=160):
197
- out_b_metric = gr.Textbox(label="DPIR output metrics", lines=1, key=7)
198
 
199
  # Manage physics
200
  with gr.Row():
 
190
  load_button = gr.Button("Run on index image from dataset", size='md')
191
  load_random_button = gr.Button("Run on random image from dataset", size='md')
192
  with gr.Column(scale=1, min_width=160):
193
+ observed_metrics = gr.Textbox(label="Observed metric", lines=2, key=5)
194
  with gr.Column(scale=1, min_width=160):
195
+ out_a_metric = gr.Textbox(label="RAM output metrics", lines=2, key=6)
196
  with gr.Column(scale=1, min_width=160):
197
+ out_b_metric = gr.Textbox(label="DPIR output metrics", lines=2, key=7)
198
 
199
  # Manage physics
200
  with gr.Row():