Spaces:
Running
Running
ehristoforu
commited on
Update app.py
Browse files
app.py
CHANGED
@@ -94,8 +94,8 @@ with gr.Blocks(css=css) as demo:
|
|
94 |
button = gr.Button(value="Generate", scale=1)
|
95 |
with gr.Accordion("Advanced options", open=False):
|
96 |
with gr.Row():
|
97 |
-
width = gr.Slider(label="Width", minimum=
|
98 |
-
height = gr.Slider(label="Height", minimum=
|
99 |
with gr.Row():
|
100 |
gallery = gr.Gallery(show_label=False, rows=1, columns=1, allow_preview=True, preview=True)
|
101 |
|
|
|
94 |
button = gr.Button(value="Generate", scale=1)
|
95 |
with gr.Accordion("Advanced options", open=False):
|
96 |
with gr.Row():
|
97 |
+
width = gr.Slider(label="Width", minimum=512, maximum=1024, step=8, value=768, interactive=True)
|
98 |
+
height = gr.Slider(label="Height", minimum=512, maximum=1024, step=8, value=768, interactive=True)
|
99 |
with gr.Row():
|
100 |
gallery = gr.Gallery(show_label=False, rows=1, columns=1, allow_preview=True, preview=True)
|
101 |
|