Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
Commit
•
6d48259
1
Parent(s):
6997717
Update app.py
Browse files
app.py
CHANGED
@@ -269,7 +269,7 @@ with block:
|
|
269 |
label="Guidance Scale", minimum=0, maximum=50, value=9, step=0.1
|
270 |
)
|
271 |
|
272 |
-
ex = gr.Examples(examples=examples, fn=infer, inputs=[text, negative, guidance_scale], outputs=[gallery, community_group], cache_examples=True)
|
273 |
negative.submit(infer, inputs=[text, negative, guidance_scale], outputs=[gallery, community_group], postprocess=False)
|
274 |
text.submit(infer, inputs=[text, negative, guidance_scale], outputs=[gallery, community_group], postprocess=False)
|
275 |
btn.click(infer, inputs=[text, negative, guidance_scale], outputs=[gallery, community_group], postprocess=False)
|
|
|
269 |
label="Guidance Scale", minimum=0, maximum=50, value=9, step=0.1
|
270 |
)
|
271 |
|
272 |
+
ex = gr.Examples(examples=examples, fn=infer, inputs=[text, negative, guidance_scale], outputs=[gallery, community_group], cache_examples=True, postprocess=False)
|
273 |
negative.submit(infer, inputs=[text, negative, guidance_scale], outputs=[gallery, community_group], postprocess=False)
|
274 |
text.submit(infer, inputs=[text, negative, guidance_scale], outputs=[gallery, community_group], postprocess=False)
|
275 |
btn.click(infer, inputs=[text, negative, guidance_scale], outputs=[gallery, community_group], postprocess=False)
|