qhillerich commited on
Commit
d63b692
·
verified ·
1 Parent(s): 9422ebb

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +16 -8
requirements.txt CHANGED
@@ -1,9 +1,17 @@
1
- diffusers>=0.30.0
2
- transformers>=4.42.0
3
- accelerate>=0.33.0
4
- safetensors>=0.4.3
5
- torch
6
- Pillow
7
- numpy
8
- imageio>=2.34.0
9
  imageio-ffmpeg>=0.4.9
 
 
 
 
 
 
 
 
 
 
 
1
+ # Core image/video utilities
2
+ numpy>=1.24
3
+ Pillow>=10.0
4
+
5
+ # WebM (and optional gif via imageio) encoding
6
+ imageio>=2.34
 
 
7
  imageio-ffmpeg>=0.4.9
8
+
9
+ # ZIP handling is stdlib, no dependency.
10
+
11
+ # If you're using a diffusers-based video model (common for LTX-style repos),
12
+ # keep these. If your base image already includes them, it's still fine.
13
+ torch>=2.1
14
+ diffusers>=0.30
15
+ transformers>=4.42
16
+ accelerate>=0.33
17
+ safetensors>=0.4