Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
|
@@ -198,7 +198,7 @@ intro = """
|
|
| 198 |
css='''
|
| 199 |
#strip, #gif{min-height: 50px}
|
| 200 |
'''
|
| 201 |
-
examples = [["winter", "summer", 1.25, "a dog in the park"], ["USA suburb", "Europe", 2, "a house"]]
|
| 202 |
image_seq = gr.Image(label="Strip", elem_id="strip")
|
| 203 |
output_image = gr.Image(label="Gif", elem_id="gif")
|
| 204 |
post_generation_image = gr.Image(label="Generated Images")
|
|
@@ -251,7 +251,7 @@ with gr.Blocks(css=css) as demo:
|
|
| 251 |
# generate_butt = gr.Button("generate")
|
| 252 |
|
| 253 |
with gr.Accordion(label="advanced options", open=False):
|
| 254 |
-
iterations = gr.Slider(label = "num iterations for clip directions", minimum=0, value=200, maximum=
|
| 255 |
steps = gr.Slider(label = "num inference steps", minimum=1, value=4, maximum=8, step=1)
|
| 256 |
interm_steps = gr.Slider(label = "num of intermediate images", minimum=3, value=5, maximum=65, step=2)
|
| 257 |
guidance_scale = gr.Slider(
|
|
|
|
| 198 |
css='''
|
| 199 |
#strip, #gif{min-height: 50px}
|
| 200 |
'''
|
| 201 |
+
examples = [["winter", "summer", 1.25, "a dog in the park"], ["USA suburb", "Europe", 2, "a house"], ["rotten", "super fresh", 2, "a tomato"]]
|
| 202 |
image_seq = gr.Image(label="Strip", elem_id="strip")
|
| 203 |
output_image = gr.Image(label="Gif", elem_id="gif")
|
| 204 |
post_generation_image = gr.Image(label="Generated Images")
|
|
|
|
| 251 |
# generate_butt = gr.Button("generate")
|
| 252 |
|
| 253 |
with gr.Accordion(label="advanced options", open=False):
|
| 254 |
+
iterations = gr.Slider(label = "num iterations for clip directions", minimum=0, value=200, maximum=500, step=1)
|
| 255 |
steps = gr.Slider(label = "num inference steps", minimum=1, value=4, maximum=8, step=1)
|
| 256 |
interm_steps = gr.Slider(label = "num of intermediate images", minimum=3, value=5, maximum=65, step=2)
|
| 257 |
guidance_scale = gr.Slider(
|