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