Uthar commited on
Commit
86d7743
1 Parent(s): a6cc3dc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -233,7 +233,7 @@ with gr.Blocks(head=CSS + JS) as demo:
233
 
234
  with gr.Column(scale=4):
235
  with gr.Accordion('Model selection'):
236
- 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, elem_classes=["butt"])
237
  model_choice.change(update_imgbox, model_choice, output)
238
  model_choice.change(extend_choices, model_choice, current_models)
239
  random_button.click(random_choices, None, model_choice)
 
233
 
234
  with gr.Column(scale=4):
235
  with gr.Accordion('Model selection'):
236
+ 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)
237
  model_choice.change(update_imgbox, model_choice, output)
238
  model_choice.change(extend_choices, model_choice, current_models)
239
  random_button.click(random_choices, None, model_choice)