Spaces:
Running
Running
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=888, maximum=1024, step=1, value=888, interactive=True)
|
| 98 |
+
height = gr.Slider(label="Height", minimum=888, maximum=1024, step=1, value=888, interactive=True)
|
| 99 |
with gr.Row():
|
| 100 |
gallery = gr.Gallery(show_label=False, rows=1, columns=1, allow_preview=True, preview=True)
|
| 101 |
|