Update app.py
Browse files
app.py
CHANGED
@@ -114,7 +114,8 @@ def make_me():
|
|
114 |
with gr.Row():
|
115 |
"""output = [gr.Image(label=m, min_width=170, height=170) for m in default_models]
|
116 |
current_models = [gr.Textbox(m, visible=False) for m in default_models]"""
|
117 |
-
choices=[models_test[0][0]]
|
|
|
118 |
output = [gr.Image(label=m, min_width=170, height=170) for m in choices]
|
119 |
current_models = [gr.Textbox(m, visible=False) for m in choices]
|
120 |
|
|
|
114 |
with gr.Row():
|
115 |
"""output = [gr.Image(label=m, min_width=170, height=170) for m in default_models]
|
116 |
current_models = [gr.Textbox(m, visible=False) for m in default_models]"""
|
117 |
+
"""choices=[models_test[0][0]]"""
|
118 |
+
choices=models_test[0]
|
119 |
output = [gr.Image(label=m, min_width=170, height=170) for m in choices]
|
120 |
current_models = [gr.Textbox(m, visible=False) for m in choices]
|
121 |
|