Yntec commited on
Commit
901af0d
1 Parent(s): 8ad62ad

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -49,8 +49,8 @@ with gr.Blocks() as demo:
49
  stop_button = gr.Button('Stop', variant = 'secondary', interactive = False)
50
  gen_button.click(lambda s: gr.update(interactive = True), None, stop_button)
51
 
52
- with gr.Column():
53
- output = [gr.Image(label = m, max_width=640) for m in default_models]
54
  current_models = [gr.Textbox(m, visible = False) for m in default_models]
55
 
56
  for m, o in zip(current_models, output):
 
49
  stop_button = gr.Button('Stop', variant = 'secondary', interactive = False)
50
  gen_button.click(lambda s: gr.update(interactive = True), None, stop_button)
51
 
52
+ with gr.Row():
53
+ output = [gr.Image(label = m, min_width=640) for m in default_models]
54
  current_models = [gr.Textbox(m, visible = False) for m in default_models]
55
 
56
  for m, o in zip(current_models, output):