Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -525,7 +525,7 @@ with block:
|
|
525 |
model_type = gr.Dropdown(choices=["realistic","anime"], label="Model Type", value="realistic") # Adding the Dropdown for model selection
|
526 |
|
527 |
# Adding Advanced Settings for the number of steps and control strength
|
528 |
-
with gr.Accordion("Advanced Settings", open=
|
529 |
steps = gr.Slider(label="Number of Steps", minimum=10, maximum=100, value=30, step=1)
|
530 |
control_strength = gr.Slider(label="Control Strength", minimum=0.1, maximum=1.0, value=0.5, step=0.1)
|
531 |
|
|
|
525 |
model_type = gr.Dropdown(choices=["realistic","anime"], label="Model Type", value="realistic") # Adding the Dropdown for model selection
|
526 |
|
527 |
# Adding Advanced Settings for the number of steps and control strength
|
528 |
+
with gr.Accordion("Advanced Settings", open=True):
|
529 |
steps = gr.Slider(label="Number of Steps", minimum=10, maximum=100, value=30, step=1)
|
530 |
control_strength = gr.Slider(label="Control Strength", minimum=0.1, maximum=1.0, value=0.5, step=0.1)
|
531 |
|