Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
@@ -25,8 +25,8 @@ with gr.Blocks() as interface:
|
|
25 |
with gr.Accordion(label="Advanced Settings", open=False):
|
26 |
with gr.Row():
|
27 |
with gr.Column():
|
28 |
-
width = gr.Slider(label="Width", info="The width in pixels of the generated image.", value=
|
29 |
-
height = gr.Slider(label="Height", info="The height in pixels of the generated image.", value=
|
30 |
with gr.Column():
|
31 |
sampling_steps = gr.Slider(label="Sampling Steps", info="The number of denoising steps.", value=20, minimum=4, maximum=50, step=1, interactive=True)
|
32 |
|
|
|
25 |
with gr.Accordion(label="Advanced Settings", open=False):
|
26 |
with gr.Row():
|
27 |
with gr.Column():
|
28 |
+
width = gr.Slider(label="Width", info="The width in pixels of the generated image.", value=512, minimum=128, maximum=4096, step=64, interactive=True)
|
29 |
+
height = gr.Slider(label="Height", info="The height in pixels of the generated image.", value=512, minimum=128, maximum=4096, step=64, interactive=True)
|
30 |
with gr.Column():
|
31 |
sampling_steps = gr.Slider(label="Sampling Steps", info="The number of denoising steps.", value=20, minimum=4, maximum=50, step=1, interactive=True)
|
32 |
|