Spaces:
Runtime error
Runtime error
Update requirements.txt
Browse files- requirements.txt +18 -5
requirements.txt
CHANGED
|
@@ -1,6 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
| 1 |
torch>=2.1.0
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Core transformers + inference
|
| 2 |
+
transformers>=4.38.0
|
| 3 |
+
accelerate>=0.27.2
|
| 4 |
torch>=2.1.0
|
| 5 |
+
huggingface-hub>=0.22.2
|
| 6 |
+
|
| 7 |
+
# For video frame sampling
|
| 8 |
+
decord==0.6.0
|
| 9 |
+
imageio>=2.31.1
|
| 10 |
+
|
| 11 |
+
# For Gradio and Spaces integration
|
| 12 |
+
gradio>=4.17.0
|
| 13 |
+
spaces>=0.20.0
|
| 14 |
+
|
| 15 |
+
# PIL backend (imageio requires it)
|
| 16 |
+
pillow>=10.0.0
|
| 17 |
+
|
| 18 |
+
# Optional: To avoid tokenizer warnings
|
| 19 |
+
sentencepiece>=0.1.99
|