Spaces:
Running
Running
Upload app.py
Browse files
app.py
CHANGED
@@ -125,7 +125,7 @@ with gr.Blocks(theme='Nymbo/Nymbo_Theme', fill_width=True, css=CSS) as demo:
|
|
125 |
|
126 |
with gr.Column(scale=4):
|
127 |
with gr.Accordion('Model selection'):
|
128 |
-
model_choice = gr.CheckboxGroup(models, label = f'Choose up to {int(num_models)} different models from the
|
129 |
model_choice.change(update_imgbox, model_choice, output)
|
130 |
model_choice.change(extend_choices, model_choice, current_models)
|
131 |
|
|
|
125 |
|
126 |
with gr.Column(scale=4):
|
127 |
with gr.Accordion('Model selection'):
|
128 |
+
model_choice = gr.CheckboxGroup(models, label = f'Choose up to {int(num_models)} different models from the {len(models)} available!', value=default_models, interactive=True)
|
129 |
model_choice.change(update_imgbox, model_choice, output)
|
130 |
model_choice.change(extend_choices, model_choice, current_models)
|
131 |
|