JustinLin610 commited on
Commit
77c4dc2
1 Parent(s): 179180d

fix order bug

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -127,7 +127,7 @@ def main():
127
  ["image-text", "A dog|A car|A bird", "assets/dog_image.jpg", None, None],
128
  ["image-text", "A dog|A car|A bird", "assets/car_image.jpg", None, None],
129
  ["audio-text", "A dog|A car|A bird", None, "assets/bird_audio.wav", None],
130
- ["video-text", "A dog|A car|A bird", None, "assets/dog_video.mp4", None],
131
  ],
132
  description="""<p>This is a simple demo of ImageBind for zero-shot cross-modal understanding (now including image classification, audio classification, and video classification). Please refer to the original <a href='https://arxiv.org/abs/2305.05665' target='_blank'>paper</a> and <a href='https://github.com/facebookresearch/ImageBind' target='_blank'>repo</a> for more details.<br>
133
  To test your own cases, you can upload an image, an audio or a video, and provide the candidate texts separated by "|".<br>
 
127
  ["image-text", "A dog|A car|A bird", "assets/dog_image.jpg", None, None],
128
  ["image-text", "A dog|A car|A bird", "assets/car_image.jpg", None, None],
129
  ["audio-text", "A dog|A car|A bird", None, "assets/bird_audio.wav", None],
130
+ ["video-text", "A dog|A car|A bird", None, None, "assets/dog_video.mp4"],
131
  ],
132
  description="""<p>This is a simple demo of ImageBind for zero-shot cross-modal understanding (now including image classification, audio classification, and video classification). Please refer to the original <a href='https://arxiv.org/abs/2305.05665' target='_blank'>paper</a> and <a href='https://github.com/facebookresearch/ImageBind' target='_blank'>repo</a> for more details.<br>
133
  To test your own cases, you can upload an image, an audio or a video, and provide the candidate texts separated by "|".<br>