MTTR commited on
Commit
2dbe61c
1 Parent(s): 2c93077

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -154,11 +154,11 @@ def process(text_query, full_video_path):
154
 
155
 
156
 
157
- title = "Interactive demo: MTTR"
158
 
159
- description = "To use it, upload a video file. Right now we only suggest using .mp4 files."
160
 
161
- article = "<p style='text-align: center'><a href='https://arxiv.org/abs/2111.14821'>End-to-End Referring Video Object Segmentation with Multimodal Transformers</a> | <a href='https://github.com/mttr2021/MTTR'>Github Repo</a></p>"
162
 
163
  iface = gr.Interface(fn=process,
164
  inputs=[gr.inputs.Textbox(label="text query"), gr.inputs.Video(label="Input video. First 10 seconds of the video are used.")],
 
154
 
155
 
156
 
157
+ title = "End-to-End Referring Video Object Segmentation with Multimodal Transformers - Interactive Demo"
158
 
159
+ description = "This notebook provides a (limited) hands-on demonstration of MTTR. Given a text query and a short clip based on a YouTube video, we demonstrate how MTTR can be used to segment the referred object instance throughout the video. To use it, upload an .mp4 video file and input a text query which describes one of the instances in that video."
160
 
161
+ article = "<p style='text-align: center'><a href='https://github.com/mttr2021/MTTR'>Github Repo</a></p>"
162
 
163
  iface = gr.Interface(fn=process,
164
  inputs=[gr.inputs.Textbox(label="text query"), gr.inputs.Video(label="Input video. First 10 seconds of the video are used.")],