Ahsen Khaliq
commited on
Commit
Β·
e5e634f
1
Parent(s):
5b4eaac
Update app.py
Browse files
app.py
CHANGED
@@ -125,10 +125,10 @@ outputs = gr.outputs.Textbox(label="Top 5 predicted labels")
|
|
125 |
|
126 |
title = "X3D"
|
127 |
description = "Gradio demo for X3D networks pretrained on the Kinetics 400 dataset. To use it, simply upload your video, or click one of the examples to load them. Read more at the links below."
|
128 |
-
article = "<p style='text-align: center'><a href='https://arxiv.org/abs/2004.04730'>X3D: Expanding Architectures for Efficient Video Recognition</a> | <a href='https://github.com/facebookresearch/pytorchvideo'>Github Repo</a></p>"
|
129 |
|
130 |
examples = [
|
131 |
['archery.mp4']
|
132 |
]
|
133 |
|
134 |
-
gr.Interface(x3dpred, inputs, outputs, title=title, description=description, article=article, examples=examples, analytics_enabled=False).launch(debug=True)
|
|
|
125 |
|
126 |
title = "X3D"
|
127 |
description = "Gradio demo for X3D networks pretrained on the Kinetics 400 dataset. To use it, simply upload your video, or click one of the examples to load them. Read more at the links below."
|
128 |
+
article = "<p style='text-align: center'><a href='https://arxiv.org/abs/2004.04730' target='_blank'>X3D: Expanding Architectures for Efficient Video Recognition</a> | <a href='https://github.com/facebookresearch/pytorchvideo' target='_blank'>Github Repo</a></p>"
|
129 |
|
130 |
examples = [
|
131 |
['archery.mp4']
|
132 |
]
|
133 |
|
134 |
+
gr.Interface(x3dpred, inputs, outputs, title=title, description=description, article=article, examples=examples, analytics_enabled=False,).launch(debug=True)
|