LoufAn commited on
Commit
1be9b12
·
1 Parent(s): 60e3950

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +18 -5
requirements.txt CHANGED
@@ -1,6 +1,19 @@
 
 
 
1
  torch>=2.1.0
2
- transformers>=4.40.0
3
- gradio
4
- accelerate
5
- sentencepiece
6
- diffusers
 
 
 
 
 
 
 
 
 
 
 
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