nroggendorff commited on
Commit
8180d07
·
verified ·
1 Parent(s): 4686e85

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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=1024, minimum=128, maximum=4096, step=64, interactive=True)
29
- height = gr.Slider(label="Height", info="The height in pixels of the generated image.", value=1024, 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
 
 
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