Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
|
@@ -40,5 +40,6 @@ print("Great sylvain ! Everything is working fine !")
|
|
| 40 |
title="YiffyPixar"
|
| 41 |
description="It takes about 500 seconds to generate an image per user. If you like this model, you can like it at its original page! https://huggingface.co/Yntec/YiffyPixar"
|
| 42 |
|
| 43 |
-
gr.Interface(fn=infer, inputs=["text",
|
|
|
|
| 44 |
|
|
|
|
| 40 |
title="YiffyPixar"
|
| 41 |
description="It takes about 500 seconds to generate an image per user. If you like this model, you can like it at its original page! https://huggingface.co/Yntec/YiffyPixar"
|
| 42 |
|
| 43 |
+
gr.Interface(fn=infer, inputs=["text",
|
| 44 |
+
gr.Slider(10, 50, value = 21, step = 1, label = 'Number of Iterations')], outputs=gallery,title=title,description=description).queue(max_size=10).launch(enable_queue=True)
|
| 45 |
|