Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -50,10 +50,8 @@ with gr.Blocks() as demo:
|
|
50 |
upload_image.upload(upload_file, upload_image, image_in, queue=False)
|
51 |
image_submit.click(fn=image_to_video, inputs=[image_in, text_in], outputs=[video_out_1])
|
52 |
|
53 |
-
gr.Examples(
|
54 |
-
|
55 |
-
['example_images/sample1.png', 'A blonde girl in jeans'],
|
56 |
-
],
|
57 |
inputs=[image_in, text_in],
|
58 |
outputs=[video_out_1],
|
59 |
fn=image_to_video,
|
|
|
50 |
upload_image.upload(upload_file, upload_image, image_in, queue=False)
|
51 |
image_submit.click(fn=image_to_video, inputs=[image_in, text_in], outputs=[video_out_1])
|
52 |
|
53 |
+
gr.Examples([['example_images/sample2.png', 'A girl with yellow hair and black clothes stood in front of the camera'],
|
54 |
+
['example_images/sample1.png', 'A blonde girl in jeans'],],
|
|
|
|
|
55 |
inputs=[image_in, text_in],
|
56 |
outputs=[video_out_1],
|
57 |
fn=image_to_video,
|