ysharma HF Staff commited on
Commit
c8f2b0f
·
1 Parent(s): b6ce28c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -4
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(examples=[
54
- ['example_images/sample2.png', 'A girl with yellow hair and black clothes stood in front of the camera'],
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,