Spaces:
Build error
Build error
Commit
·
6fe9715
1
Parent(s):
5c58758
Update app.py
Browse files
app.py
CHANGED
@@ -291,11 +291,11 @@ with gr.Blocks(css="style.css") as demo:
|
|
291 |
with gr.Group():
|
292 |
neg_prompt = gr.Textbox(label="Negative prompt", placeholder="What to exclude from the image")
|
293 |
|
294 |
-
n_images = gr.Slider(label="Images", value=1, minimum=1, maximum=
|
295 |
|
296 |
with gr.Row():
|
297 |
guidance = gr.Slider(label="Guidance scale", value=7.5, maximum=15)
|
298 |
-
steps = gr.Slider(label="Steps", value=current_steps, minimum=2, maximum=
|
299 |
|
300 |
with gr.Row():
|
301 |
width = gr.Slider(label="Width", value=512, minimum=64, maximum=1024, step=8)
|
|
|
291 |
with gr.Group():
|
292 |
neg_prompt = gr.Textbox(label="Negative prompt", placeholder="What to exclude from the image")
|
293 |
|
294 |
+
n_images = gr.Slider(label="Images", value=1, minimum=1, maximum=8, step=1)
|
295 |
|
296 |
with gr.Row():
|
297 |
guidance = gr.Slider(label="Guidance scale", value=7.5, maximum=15)
|
298 |
+
steps = gr.Slider(label="Steps", value=current_steps, minimum=2, maximum=300, step=1)
|
299 |
|
300 |
with gr.Row():
|
301 |
width = gr.Slider(label="Width", value=512, minimum=64, maximum=1024, step=8)
|