Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -215,14 +215,15 @@ iface = gr.Interface(fn=run, inputs=[
|
|
215 |
# gr.Image(image_mode="L", source="canvas", type="pil", shape=(256,256), invert_colors=False, tool="editor"),
|
216 |
gr.inputs.Radio(label="Input Mode - The type of your input", choices=["mask", "sketch"],default="sketch"),
|
217 |
gr.inputs.Slider(label="sample_c - The strength of classifier-free guidance",default=1.4, minimum=1.0, maximum=2.0),
|
218 |
-
gr.inputs.Slider(label="Number of samples - How many samples you wish to generate", default=
|
219 |
gr.inputs.Slider(label="Number of Steps - How many steps you want to use", default=100, step=10, minimum=50, maximum=1000),
|
220 |
],
|
221 |
outputs=[image],
|
222 |
css=css,
|
223 |
title="Generate images from sketches with PITI",
|
224 |
description="<div>By uploading a sketch map or a semantic map and pressing submit, you can generate images based on your input. As the computing device is CPU, the running may be slow.</div>",
|
225 |
-
examples=[["1.png", "sketch", 1.3,
|
|
|
226 |
|
227 |
iface.launch(enable_queue=True)
|
228 |
-
|
|
|
215 |
# gr.Image(image_mode="L", source="canvas", type="pil", shape=(256,256), invert_colors=False, tool="editor"),
|
216 |
gr.inputs.Radio(label="Input Mode - The type of your input", choices=["mask", "sketch"],default="sketch"),
|
217 |
gr.inputs.Slider(label="sample_c - The strength of classifier-free guidance",default=1.4, minimum=1.0, maximum=2.0),
|
218 |
+
gr.inputs.Slider(label="Number of samples - How many samples you wish to generate", default=2, step=1, minimum=1, maximum=8),
|
219 |
gr.inputs.Slider(label="Number of Steps - How many steps you want to use", default=100, step=10, minimum=50, maximum=1000),
|
220 |
],
|
221 |
outputs=[image],
|
222 |
css=css,
|
223 |
title="Generate images from sketches with PITI",
|
224 |
description="<div>By uploading a sketch map or a semantic map and pressing submit, you can generate images based on your input. As the computing device is CPU, the running may be slow.</div>",
|
225 |
+
examples=[["1.png", "sketch", 1.3, 2, 100], ["2.png", "sketch", 1.3, 2, 100],["3.png", "sketch", 1.3, 2, 100],["4.png", "mask", 1.3, 2, 100],["5.png", "mask", 1.3, 2, 100],["6.png", "mask", 1.3, 2, 100]],
|
226 |
+
cache_examples=False)
|
227 |
|
228 |
iface.launch(enable_queue=True)
|
229 |
+
|