Spaces:
Runtime error
Runtime error
pengdaqian
commited on
Commit
•
37db064
1
Parent(s):
4eb6ffc
fix
Browse files
app.py
CHANGED
@@ -429,9 +429,9 @@ with block:
|
|
429 |
container=False,
|
430 |
)
|
431 |
with gr.Row(elem_id="txt2img_size", scale=4):
|
432 |
-
width = gr.Slider(minimum=64, maximum=
|
433 |
elem_id="txt2img_width")
|
434 |
-
height = gr.Slider(minimum=64, maximum=
|
435 |
elem_id="txt2img_height")
|
436 |
|
437 |
with gr.Row(elem_id="txt2img_sampler", scale=4):
|
|
|
429 |
container=False,
|
430 |
)
|
431 |
with gr.Row(elem_id="txt2img_size", scale=4):
|
432 |
+
width = gr.Slider(minimum=64, maximum=1024, step=8, label="Width", value=512,
|
433 |
elem_id="txt2img_width")
|
434 |
+
height = gr.Slider(minimum=64, maximum=1024, step=8, label="Height", value=512,
|
435 |
elem_id="txt2img_height")
|
436 |
|
437 |
with gr.Row(elem_id="txt2img_sampler", scale=4):
|