Upload requirements.txt
Browse files- requirements.txt +26 -0
requirements.txt
ADDED
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Core dependencies - HF Spaces compatible versions
|
2 |
+
torch==2.1.0
|
3 |
+
torchvision==0.16.0
|
4 |
+
transformers==4.46.3
|
5 |
+
accelerate>=0.26.0
|
6 |
+
numpy<2.0.0
|
7 |
+
einops
|
8 |
+
bitsandbytes
|
9 |
+
|
10 |
+
# Video/Image processing
|
11 |
+
decord
|
12 |
+
imageio
|
13 |
+
imageio-ffmpeg
|
14 |
+
opencv-python-headless
|
15 |
+
ffmpeg-python
|
16 |
+
pillow
|
17 |
+
|
18 |
+
# Gradio and web interface
|
19 |
+
gradio==5.34.0
|
20 |
+
spaces
|
21 |
+
requests
|
22 |
+
|
23 |
+
# Additional dependencies
|
24 |
+
huggingface_hub
|
25 |
+
sentencepiece
|
26 |
+
safetensors
|