Spaces:
Runtime error
Runtime error
Commit
·
536a523
1
Parent(s):
07e1ae9
Update app.py
Browse files
app.py
CHANGED
@@ -44,6 +44,11 @@ def fancy():
|
|
44 |
|
45 |
Image generation is slow, from 80s - 120s per image.
|
46 |
When running 4 images concurrently it takes 4-5 minutes total.
|
|
|
|
|
|
|
|
|
|
|
47 |
</pre>
|
48 |
|
49 |
<p class="center">
|
@@ -69,7 +74,7 @@ def fancy():
|
|
69 |
|
70 |
with gr.Row(elem_id="tiki-options"):
|
71 |
batch_size = gr.Slider(label="image count", minimum=1, maximum=4, value=1, step=1)
|
72 |
-
seed = gr.Slider(label="
|
73 |
|
74 |
btn.click(tiki, inputs=[batch_size,seed], outputs=gallery)
|
75 |
|
|
|
44 |
|
45 |
Image generation is slow, from 80s - 120s per image.
|
46 |
When running 4 images concurrently it takes 4-5 minutes total.
|
47 |
+
|
48 |
+
Despite the long wait time, it's more fun to generate 4 at a time.
|
49 |
+
|
50 |
+
Different "tiki" values will give different tiki images if you can
|
51 |
+
imagine.
|
52 |
</pre>
|
53 |
|
54 |
<p class="center">
|
|
|
74 |
|
75 |
with gr.Row(elem_id="tiki-options"):
|
76 |
batch_size = gr.Slider(label="image count", minimum=1, maximum=4, value=1, step=1)
|
77 |
+
seed = gr.Slider(label="tiki", minimum=0, maximum=maximum, value=seed, step=1)
|
78 |
|
79 |
btn.click(tiki, inputs=[batch_size,seed], outputs=gallery)
|
80 |
|