Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -118,7 +118,8 @@ with gr.Blocks(theme='Yntec/HaleyCH_Theme_craiyon') as demo:
|
|
118 |
"""
|
119 |
)
|
120 |
with gr.Row():
|
121 |
-
output = [gr.Image(
|
|
|
122 |
current_models = [gr.Textbox(m, visible = False) for m in default_models]
|
123 |
|
124 |
for m, o in zip(current_models, output):
|
|
|
118 |
"""
|
119 |
)
|
120 |
with gr.Row():
|
121 |
+
output = [gr.Image(min_width=480) for m in default_models]
|
122 |
+
#output = [gr.Image(label = m, min_width=480) for m in default_models]
|
123 |
current_models = [gr.Textbox(m, visible = False) for m in default_models]
|
124 |
|
125 |
for m, o in zip(current_models, output):
|