hanzla commited on
Commit
62a5a51
·
1 Parent(s): 4ffd894

adapters added

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -71,7 +71,8 @@ iface = gr.Interface(
71
  gr.Textbox(label="Enter your prompt"),
72
  gr.Slider(minimum=0.5, maximum=10, value=7.5, label="Guidance Scale"),
73
  gr.Slider(minimum=4, maximum=24, step=4, value=4, label="Inference Steps"),
74
- gr.Dropdown(choices=adapter_options.keys(), label="Select Adapter(s)", type="checkbox") # Updated for multiple selections
 
75
  ],
76
  outputs=gr.Video(label="Generated Video"),
77
  )
 
71
  gr.Textbox(label="Enter your prompt"),
72
  gr.Slider(minimum=0.5, maximum=10, value=7.5, label="Guidance Scale"),
73
  gr.Slider(minimum=4, maximum=24, step=4, value=4, label="Inference Steps"),
74
+ gr.CheckboxGroup(adapter_options.keys(), label="Adapter Choice",type='value'),
75
+ # Updated for multiple selections
76
  ],
77
  outputs=gr.Video(label="Generated Video"),
78
  )