Update app.py
Browse files
app.py
CHANGED
|
@@ -252,7 +252,7 @@ with gr.Blocks() as demo:
|
|
| 252 |
with gr.Column():
|
| 253 |
output_image = gr.Image(label="Output Image", interactive=False, format="png", height=395)
|
| 254 |
|
| 255 |
-
with gr.Accordion("Advanced Settings", open=False, visible=
|
| 256 |
seed = gr.Slider(label="Seed", minimum=0, maximum=MAX_SEED, step=1, value=0)
|
| 257 |
randomize_seed = gr.Checkbox(label="Randomize Seed", value=True)
|
| 258 |
guidance_scale = gr.Slider(label="Guidance Scale", minimum=1.0, maximum=10.0, step=0.1, value=1.0)
|
|
|
|
| 252 |
with gr.Column():
|
| 253 |
output_image = gr.Image(label="Output Image", interactive=False, format="png", height=395)
|
| 254 |
|
| 255 |
+
with gr.Accordion("Advanced Settings", open=False, visible=True):
|
| 256 |
seed = gr.Slider(label="Seed", minimum=0, maximum=MAX_SEED, step=1, value=0)
|
| 257 |
randomize_seed = gr.Checkbox(label="Randomize Seed", value=True)
|
| 258 |
guidance_scale = gr.Slider(label="Guidance Scale", minimum=1.0, maximum=10.0, step=0.1, value=1.0)
|