Update app.py
Browse files
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.
|
53 |
-
output = [gr.Image(label = m,
|
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):
|