qubvel-hf commited on
Commit
b5dd9b3
Β·
1 Parent(s): ee545fd
Files changed (2) hide show
  1. index.html +16 -5
  2. style.css +45 -0
index.html CHANGED
@@ -18,11 +18,11 @@
18
  </header>
19
 
20
  <section class="description">
21
- <h2>About the Project</h2>
22
- <p>This demo showcases the V-JEPA 2 model's capabilities in real-time video classification. V-JEPA 2 is a
23
- state-of-the-art video understanding model that can extract video features,
24
- making it ideal for applications requiring immediate video content analysis.</p>
25
- <p>The model is pretrained on Something-Something-V2 dataset and can classify 174 actions.</p>
26
  </section>
27
 
28
  <section class="demo">
@@ -53,6 +53,17 @@ cd vjepa2-streaming-video-classification</code></pre>
53
  <footer>
54
  <p>Built with ❀️ using <a href="https://huggingface.co/transformers" target="_blank">Hugging Face
55
  Transformers</a></p>
 
 
 
 
 
 
 
 
 
 
 
56
  </footer>
57
  </div>
58
  </body>
 
18
  </header>
19
 
20
  <section class="description">
21
+ <h2>πŸŽ₯ Video Classification</h2>
22
+ <p>This demo showcases a specialized version of V-JEPA 2, fine-tuned for real-time video action recognition!
23
+ Model optimized specifically for classifying 174 different actions from the Something-Something-V2 dataset.
24
+ Watch as it instantly understands what's happening in the video! ⚑
25
+ </p>
26
  </section>
27
 
28
  <section class="demo">
 
53
  <footer>
54
  <p>Built with ❀️ using <a href="https://huggingface.co/transformers" target="_blank">Hugging Face
55
  Transformers</a></p>
56
+ <div class="footer-links">
57
+ <h4>Learn More About V-JEPA 2</h4>
58
+ <ul>
59
+ <li><a href="https://ai.meta.com/vjepa/" target="_blank">🌐 Official Meta AI Page</a></li>
60
+ <li><a href="https://github.com/facebookresearch/vjepa2" target="_blank">πŸ“š GitHub Repository</a>
61
+ </li>
62
+ <li><a href="https://huggingface.co/papers/2506.09985" target="_blank">πŸ“„ Research Paper</a></li>
63
+ <li><a href="https://huggingface.co/spaces/qubvel-hf/vjepa2-streaming-video-classification"
64
+ target="_blank">πŸ”— Original Demo Space</a></li>
65
+ </ul>
66
+ </div>
67
  </footer>
68
  </div>
69
  </body>
style.css CHANGED
@@ -129,6 +129,45 @@ a:hover {
129
  color: #2B6CB0;
130
  }
131
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
132
  @media (max-width: 768px) {
133
  .container {
134
  padding: 1rem;
@@ -145,4 +184,10 @@ a:hover {
145
  pre {
146
  padding: 0.75rem;
147
  }
 
 
 
 
 
 
148
  }
 
129
  color: #2B6CB0;
130
  }
131
 
132
+ .footer-links {
133
+ margin-top: 2rem;
134
+ padding-top: 1rem;
135
+ border-top: 1px solid #E2E8F0;
136
+ }
137
+
138
+ .footer-links h4 {
139
+ color: var(--primary-color);
140
+ margin-bottom: 1rem;
141
+ font-size: 1.1rem;
142
+ }
143
+
144
+ .footer-links ul {
145
+ list-style: none;
146
+ margin: 0;
147
+ padding: 0;
148
+ display: flex;
149
+ flex-wrap: wrap;
150
+ gap: 1.5rem;
151
+ justify-content: center;
152
+ }
153
+
154
+ .footer-links li {
155
+ margin: 0;
156
+ }
157
+
158
+ .footer-links a {
159
+ color: var(--secondary-color);
160
+ text-decoration: none;
161
+ transition: color 0.2s ease;
162
+ display: inline-flex;
163
+ align-items: center;
164
+ gap: 0.5rem;
165
+ }
166
+
167
+ .footer-links a:hover {
168
+ color: var(--accent-color);
169
+ }
170
+
171
  @media (max-width: 768px) {
172
  .container {
173
  padding: 1rem;
 
184
  pre {
185
  padding: 0.75rem;
186
  }
187
+
188
+ .footer-links ul {
189
+ flex-direction: column;
190
+ align-items: center;
191
+ gap: 1rem;
192
+ }
193
  }