Spaces:
Running
Running
charliebaby2023
commited on
Commit
•
9318515
1
Parent(s):
ebd48bd
Update app.py
Browse files
app.py
CHANGED
@@ -73,7 +73,8 @@ def make_me():
|
|
73 |
gen_event = gen_button.click(gen_fn, [m, txt_input], o)
|
74 |
stop_button.click(lambda s: gr.update(interactive=False), None, stop_button, cancels=[gen_event])
|
75 |
with gr.Accordion('Model selection'):
|
76 |
-
|
|
|
77 |
model_choice.change(update_imgbox, model_choice, output)
|
78 |
model_choice.change(extend_choices, model_choice, current_models)
|
79 |
|
|
|
73 |
gen_event = gen_button.click(gen_fn, [m, txt_input], o)
|
74 |
stop_button.click(lambda s: gr.update(interactive=False), None, stop_button, cancels=[gen_event])
|
75 |
with gr.Accordion('Model selection'):
|
76 |
+
# model_choice = gr.CheckboxGroup(models, label=f' {num_models} different models selected', value=default_models, multiselect=True, interactive=True, filterable=False)
|
77 |
+
model_choice = gr.CheckboxGroup(models, label=f' {num_models} different models selected', value=default_models, interactive=True, filterable=False)
|
78 |
model_choice.change(update_imgbox, model_choice, output)
|
79 |
model_choice.change(extend_choices, model_choice, current_models)
|
80 |
|