Spaces:
Running
on
Zero
Running
on
Zero
<fix> fix a syntax bug.
Browse files
app.py
CHANGED
@@ -301,7 +301,7 @@ def create_app():
|
|
301 |
gr.Markdown(notice, elem_id="notice")
|
302 |
target_prompt = gr.Textbox(lines=2, label="Target Prompt", elem_id="tp")
|
303 |
condition_image_prompt = gr.Textbox(lines=2, label="Condition Image Prompt", elem_id="cp")
|
304 |
-
random_seed = gr.Number(label="Random Seed",
|
305 |
inpainting = gr.Checkbox(label="Inpainting", value=False, elem_id="inpainting")
|
306 |
fill_x1 = gr.Number(label="In/Out-painting Box Left Boundary", precision=0, value=128, elem_id="fill_x1")
|
307 |
fill_x2 = gr.Number(label="In/Out-painting Box Right Boundary", precision=0, value=384, elem_id="fill_x2")
|
|
|
301 |
gr.Markdown(notice, elem_id="notice")
|
302 |
target_prompt = gr.Textbox(lines=2, label="Target Prompt", elem_id="tp")
|
303 |
condition_image_prompt = gr.Textbox(lines=2, label="Condition Image Prompt", elem_id="cp")
|
304 |
+
random_seed = gr.Number(label="Random Seed", precision=0, value=0, elem_id="seed")
|
305 |
inpainting = gr.Checkbox(label="Inpainting", value=False, elem_id="inpainting")
|
306 |
fill_x1 = gr.Number(label="In/Out-painting Box Left Boundary", precision=0, value=128, elem_id="fill_x1")
|
307 |
fill_x2 = gr.Number(label="In/Out-painting Box Right Boundary", precision=0, value=384, elem_id="fill_x2")
|