Spaces:
Runtime error
Runtime error
SUPERSHANKY
commited on
Commit
•
a3758d7
1
Parent(s):
d9a59b0
Update app.py
Browse files
app.py
CHANGED
@@ -325,11 +325,11 @@ with gr.Blocks(css="style.css") as demo:
|
|
325 |
with gr.Group():
|
326 |
neg_prompt = gr.Textbox(label="Negative prompt", placeholder="What to exclude from the image")
|
327 |
|
328 |
-
n_images = gr.Slider(label="Images", value=1, minimum=1, maximum=
|
329 |
|
330 |
with gr.Row():
|
331 |
guidance = gr.Slider(label="Guidance scale", value=7.5, maximum=15)
|
332 |
-
steps = gr.Slider(label="Steps", value=current_steps, minimum=2, maximum=
|
333 |
|
334 |
with gr.Row():
|
335 |
width = gr.Slider(label="Width", value=512, minimum=64, maximum=1024, step=8)
|
|
|
325 |
with gr.Group():
|
326 |
neg_prompt = gr.Textbox(label="Negative prompt", placeholder="What to exclude from the image")
|
327 |
|
328 |
+
n_images = gr.Slider(label="Images", value=1, minimum=1, maximum=10, step=1)
|
329 |
|
330 |
with gr.Row():
|
331 |
guidance = gr.Slider(label="Guidance scale", value=7.5, maximum=15)
|
332 |
+
steps = gr.Slider(label="Steps", value=current_steps, minimum=2, maximum=250, step=1)
|
333 |
|
334 |
with gr.Row():
|
335 |
width = gr.Slider(label="Width", value=512, minimum=64, maximum=1024, step=8)
|