Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -33,29 +33,17 @@ TITLE = 'VideoMind: A Chain-of-LoRA Agent for Long Video Reasoning'
|
|
33 |
BADGE = """
|
34 |
<h3 align="center" style="margin-top: -0.5em;">A Chain-of-LoRA Agent for Long Video Reasoning</h3>
|
35 |
<div style="display: flex; justify-content: center; gap: 5px; margin-bottom: -0.7em !important;">
|
36 |
-
<a href="https://arxiv.org/abs/2503.13444" target="_blank">
|
37 |
-
|
38 |
-
|
39 |
-
<a href="https://
|
40 |
-
|
41 |
-
|
42 |
-
<a href="https://huggingface.co/collections/yeliudev/videomind-67dd41f42c57f0e7433afb36" target="_blank">
|
43 |
-
<img src="https://img.shields.io/badge/%F0%9F%A4%97%20Hugging%20Face-Model-blue">
|
44 |
-
</a>
|
45 |
-
<a href="https://huggingface.co/datasets/yeliudev/VideoMind-Dataset" target="_blank">
|
46 |
-
<img src="https://img.shields.io/badge/%F0%9F%A4%97%20Hugging%20Face-Dataset-orange">
|
47 |
-
</a>
|
48 |
-
<a href="https://github.com/yeliudev/VideoMind/blob/main/README.md" target="_blank">
|
49 |
-
<img src="https://img.shields.io/badge/License-BSD--3--Clause-purple">
|
50 |
-
</a>
|
51 |
-
<a href="https://github.com/yeliudev/VideoMind" target="_blank">
|
52 |
-
<img src="https://img.shields.io/github/stars/yeliudev/VideoMind">
|
53 |
-
</a>
|
54 |
</div>
|
55 |
"""
|
56 |
|
57 |
LOGO = '<p align="center"><img width="350" src="https://raw.githubusercontent.com/yeliudev/VideoMind/refs/heads/main/.github/logo.png"></p>'
|
58 |
-
DISC = '
|
59 |
|
60 |
# yapf:disable
|
61 |
EXAMPLES = [
|
|
|
33 |
BADGE = """
|
34 |
<h3 align="center" style="margin-top: -0.5em;">A Chain-of-LoRA Agent for Long Video Reasoning</h3>
|
35 |
<div style="display: flex; justify-content: center; gap: 5px; margin-bottom: -0.7em !important;">
|
36 |
+
<a href="https://arxiv.org/abs/2503.13444" target="_blank"><img src="https://img.shields.io/badge/arXiv-2503.13444-red"></a>
|
37 |
+
<a href="https://videomind.github.io/" target="_blank"><img src="https://img.shields.io/badge/Project-Page-brightgreen"></a>
|
38 |
+
<a href="https://huggingface.co/collections/yeliudev/videomind-67dd41f42c57f0e7433afb36" target="_blank"><img src="https://img.shields.io/badge/%F0%9F%A4%97%20Hugging%20Face-Model-blue"></a>
|
39 |
+
<a href="https://huggingface.co/datasets/yeliudev/VideoMind-Dataset" target="_blank"><img src="https://img.shields.io/badge/%F0%9F%A4%97%20Hugging%20Face-Dataset-orange"></a>
|
40 |
+
<a href="https://github.com/yeliudev/VideoMind/blob/main/README.md" target="_blank"><img src="https://img.shields.io/badge/License-BSD--3--Clause-purple"></a>
|
41 |
+
<a href="https://github.com/yeliudev/VideoMind" target="_blank"><img src="https://img.shields.io/github/stars/yeliudev/VideoMind"></a>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
42 |
</div>
|
43 |
"""
|
44 |
|
45 |
LOGO = '<p align="center"><img width="350" src="https://raw.githubusercontent.com/yeliudev/VideoMind/refs/heads/main/.github/logo.png"></p>'
|
46 |
+
DISC = 'VideoMind is a multi-modal agent framework that enhances video reasoning by emulating *human-like* processes, such as *breaking down tasks*, *localizing and verifying moments*, and *synthesizing answers*. This demo showcases how VideoMind-2B handles video-language tasks. Please open an <a href="https://github.com/yeliudev/VideoMind/issues/new" target="_blank">issue</a> if you meet any problems.' # noqa
|
47 |
|
48 |
# yapf:disable
|
49 |
EXAMPLES = [
|