Spaces:
Runtime error
Runtime error
Commit
·
cdc15b6
1
Parent(s):
50b15cd
Add default value to immunize
Browse files
app.py
CHANGED
@@ -113,8 +113,8 @@ demo = gr.Interface(fn=run,
|
|
113 |
inputs=[
|
114 |
gr.ImageMask(label='Input Image'),
|
115 |
gr.Textbox(label='Prompt', placeholder='A photo of a man in a wedding'),
|
116 |
-
gr.Textbox(label='Seed', placeholder='1234'
|
117 |
-
gr.Checkbox(label='Immunize'),
|
118 |
],
|
119 |
outputs=[gr.Gallery(
|
120 |
label="Generated images",
|
|
|
113 |
inputs=[
|
114 |
gr.ImageMask(label='Input Image'),
|
115 |
gr.Textbox(label='Prompt', placeholder='A photo of a man in a wedding'),
|
116 |
+
gr.Textbox(label='Seed', placeholder='1234'),
|
117 |
+
gr.Checkbox(label='Immunize', value=False),
|
118 |
],
|
119 |
outputs=[gr.Gallery(
|
120 |
label="Generated images",
|