Spaces:
Runtime error
Runtime error
bug fix
Browse files
app.py
CHANGED
@@ -302,10 +302,10 @@ with image_blocks as demo:
|
|
302 |
examples_per_page=10,
|
303 |
examples=human_ex_list
|
304 |
)
|
305 |
-
|
306 |
-
|
307 |
-
|
308 |
-
|
309 |
|
310 |
with gr.Column():
|
311 |
prompt = gr.Textbox(placeholder="Description of garment ex: Yellow Top", show_label=False, elem_id="prompt")
|
|
|
302 |
examples_per_page=10,
|
303 |
examples=human_ex_list
|
304 |
)
|
305 |
+
with gr.Accordion(label="Advanced Settings", open=False):
|
306 |
+
with gr.Row():
|
307 |
+
denoise_steps = gr.Number(label="Denoising Steps", minimum=20, maximum=40, value=30, step=1)
|
308 |
+
seed = gr.Number(label="Seed", minimum=-1, maximum=2147483647, step=1, value=42)
|
309 |
|
310 |
with gr.Column():
|
311 |
prompt = gr.Textbox(placeholder="Description of garment ex: Yellow Top", show_label=False, elem_id="prompt")
|