Shoubin commited on
Commit
7d98411
1 Parent(s): bb2fbd6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -197,9 +197,9 @@ with gr.Blocks(title="SeViLA demo") as demo:
197
  inputs=[video, question, option1, option2, option3, video_frame_num, keyframe_num],
198
  outputs=[keyframes, timestamps, answer],
199
  fn=sevila_demo,
200
- examples=[['videos/demo1.mp4', 'Why did the two ladies put their hands above their eyes while staring out?', 'practicing cheer', 'play ball', 'to see better', 32, 4],
201
  ['videos/demo2.mp4', 'What did both of them do after completing skiing?', 'jump and pose' , 'bend down','raised their hands', 32, 4],
202
- ['videos/demo3.mp4', 'What room was Wilson breaking into when House found him?', 'the kitchen' , 'the dining room','the bathroom', 32, 4],
203
  ['videos/demo4.mp4', 'what kind of bird is it?', 'chikadee' , 'eagle','seagull', 32, 1]],
204
  cache_examples=False,
205
  )
 
197
  inputs=[video, question, option1, option2, option3, video_frame_num, keyframe_num],
198
  outputs=[keyframes, timestamps, answer],
199
  fn=sevila_demo,
200
+ examples=[['videos/demo1.mp4', 'Why did the two ladies put their hands above their eyes while staring out?', 'practicing cheer', 'to place wreaths', 'to see better', 32, 4],
201
  ['videos/demo2.mp4', 'What did both of them do after completing skiing?', 'jump and pose' , 'bend down','raised their hands', 32, 4],
202
+ ['videos/demo3.mp4', 'What room was Wilson breaking into when House found him?', 'the bedroom' , 'the bathroom','the kitchen', 32, 4],
203
  ['videos/demo4.mp4', 'what kind of bird is it?', 'chikadee' , 'eagle','seagull', 32, 1]],
204
  cache_examples=False,
205
  )