Update app.py
Browse files
app.py
CHANGED
@@ -50,7 +50,7 @@ with gr.Blocks() as demo:
|
|
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=
|
54 |
current_models = [gr.Textbox(m, visible = False) for m in default_models]
|
55 |
|
56 |
for m, o in zip(current_models, output):
|
|
|
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=480) 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):
|