Spaces:
Configuration error
Configuration error
naomiKenKorem
commited on
Commit
•
0683bdf
1
Parent(s):
ffabf8d
Update app.py
Browse files
app.py
CHANGED
@@ -216,10 +216,10 @@ def ui():
|
|
216 |
with gr.Row():
|
217 |
with gr.Column():
|
218 |
base_model_dropdown = gr.Dropdown( label="Base DreamBooth Model", choices=controller.base_model_list, value=controller.base_model_list[0], interactive=True )
|
219 |
-
|
220 |
|
221 |
base_model_dropdown.change(fn=controller.update_base_model, inputs=[base_model_dropdown], outputs=[base_model_dropdown])
|
222 |
-
|
223 |
|
224 |
prompt_textbox = gr.Textbox( label="Prompt", lines=3 )
|
225 |
negative_prompt_textbox = gr.Textbox( label="Negative Prompt", lines=3, value="worst quality, low quality, nsfw, logo")
|
|
|
216 |
with gr.Row():
|
217 |
with gr.Column():
|
218 |
base_model_dropdown = gr.Dropdown( label="Base DreamBooth Model", choices=controller.base_model_list, value=controller.base_model_list[0], interactive=True )
|
219 |
+
motion_module_dropdown = gr.Dropdown( label="Motion Module", choices=controller.motion_module_list, value=controller.motion_module_list[0], interactive=True )
|
220 |
|
221 |
base_model_dropdown.change(fn=controller.update_base_model, inputs=[base_model_dropdown], outputs=[base_model_dropdown])
|
222 |
+
motion_module_dropdown.change(fn=controller.update_motion_module, inputs=[motion_module_dropdown], outputs=[motion_module_dropdown])
|
223 |
|
224 |
prompt_textbox = gr.Textbox( label="Prompt", lines=3 )
|
225 |
negative_prompt_textbox = gr.Textbox( label="Negative Prompt", lines=3, value="worst quality, low quality, nsfw, logo")
|