Spaces:
Runtime error
Runtime error
update
Browse files- index.html +9 -6
- style.css +7 -6
index.html
CHANGED
|
@@ -14,13 +14,14 @@
|
|
| 14 |
<header>
|
| 15 |
<h1>V-JEPA 2: Streaming Video Classification</h1>
|
| 16 |
<nav class="links">
|
| 17 |
-
<a href="https://huggingface.co/collections/facebook/v-jepa-2-6841bad8413014e185b497a6"
|
|
|
|
| 18 |
Collection</a>
|
| 19 |
<a href="https://github.com/facebookresearch/vjepa2" target="_blank">π GitHub</a>
|
| 20 |
<a href="https://huggingface.co/papers/2506.09985" target="_blank">π Paper</a>
|
| 21 |
</nav>
|
| 22 |
</header>
|
| 23 |
-
|
| 24 |
<section class="description">
|
| 25 |
<h4>π₯ Video Classification</h4>
|
| 26 |
<p>This demo showcases a specialized version of V-JEPA 2, fine-tuned for real-time video action recognition!
|
|
@@ -33,10 +34,12 @@
|
|
| 33 |
<section class="demo">
|
| 34 |
<h2>Recorded Demo</h2>
|
| 35 |
<div class="video-container">
|
| 36 |
-
|
| 37 |
-
|
| 38 |
-
|
| 39 |
-
|
|
|
|
|
|
|
| 40 |
</div>
|
| 41 |
</section>
|
| 42 |
|
|
|
|
| 14 |
<header>
|
| 15 |
<h1>V-JEPA 2: Streaming Video Classification</h1>
|
| 16 |
<nav class="links">
|
| 17 |
+
<a href="https://huggingface.co/collections/facebook/v-jepa-2-6841bad8413014e185b497a6"
|
| 18 |
+
target="_blank">π₯
|
| 19 |
Collection</a>
|
| 20 |
<a href="https://github.com/facebookresearch/vjepa2" target="_blank">π GitHub</a>
|
| 21 |
<a href="https://huggingface.co/papers/2506.09985" target="_blank">π Paper</a>
|
| 22 |
</nav>
|
| 23 |
</header>
|
| 24 |
+
|
| 25 |
<section class="description">
|
| 26 |
<h4>π₯ Video Classification</h4>
|
| 27 |
<p>This demo showcases a specialized version of V-JEPA 2, fine-tuned for real-time video action recognition!
|
|
|
|
| 34 |
<section class="demo">
|
| 35 |
<h2>Recorded Demo</h2>
|
| 36 |
<div class="video-container">
|
| 37 |
+
<video controls>
|
| 38 |
+
<source
|
| 39 |
+
src="https://huggingface.co/spaces/qubvel-hf/vjepa2-streaming-video-classification/resolve/main/misc/vjepa2-fastrtc-demo.mp4"
|
| 40 |
+
type="video/mp4">
|
| 41 |
+
Your browser does not support the video tag.
|
| 42 |
+
</video>
|
| 43 |
</div>
|
| 44 |
</section>
|
| 45 |
|
style.css
CHANGED
|
@@ -74,14 +74,11 @@ h3 {
|
|
| 74 |
margin-bottom: 1rem;
|
| 75 |
}
|
| 76 |
|
| 77 |
-
.video-
|
| 78 |
width: 100%;
|
| 79 |
height: 100%;
|
| 80 |
-
|
| 81 |
-
|
| 82 |
-
justify-content: center;
|
| 83 |
-
color: var(--secondary-color);
|
| 84 |
-
font-size: 1.1rem;
|
| 85 |
}
|
| 86 |
|
| 87 |
.instructions {
|
|
@@ -190,4 +187,8 @@ a:hover {
|
|
| 190 |
align-items: center;
|
| 191 |
gap: 1rem;
|
| 192 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
| 193 |
}
|
|
|
|
| 74 |
margin-bottom: 1rem;
|
| 75 |
}
|
| 76 |
|
| 77 |
+
.video-container video {
|
| 78 |
width: 100%;
|
| 79 |
height: 100%;
|
| 80 |
+
object-fit: cover;
|
| 81 |
+
display: block;
|
|
|
|
|
|
|
|
|
|
| 82 |
}
|
| 83 |
|
| 84 |
.instructions {
|
|
|
|
| 187 |
align-items: center;
|
| 188 |
gap: 1rem;
|
| 189 |
}
|
| 190 |
+
}
|
| 191 |
+
|
| 192 |
+
.video-placeholder {
|
| 193 |
+
display: none;
|
| 194 |
}
|