Chyd19 commited on
Commit
41f4263
·
verified ·
1 Parent(s): 3272049

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +32 -12
requirements.txt CHANGED
@@ -1,12 +1,32 @@
1
- torch
2
- torchvision
3
- torchaudio
4
- diffusers==0.26.0
5
- transformers==4.38.0
6
- accelerate
7
- gradio
8
- lpips
9
- git+https://github.com/openai/CLIP.git
10
- bert-score
11
- Pillow
12
- numpy
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+
3
+ # Core ML libraries
4
+ torch>=2.1.0
5
+ torchvision>=0.16.0
6
+
7
+ # Diffusers & Transformers
8
+ diffusers>=0.23.1
9
+ transformers>=4.35.0
10
+ sentencepiece>=0.1.99
11
+
12
+ # Hugging Face pipelines
13
+ torchmetrics>=1.1.0
14
+ accelerate>=0.24.0
15
+
16
+ # Image quality & metrics
17
+ lpips>=0.1.4
18
+ clip @ git+https://github.com/openai/CLIP.git
19
+
20
+ # NLP evaluation
21
+ bert-score>=0.3.12
22
+
23
+ # Image processing
24
+ Pillow>=10.0.0
25
+ torchvision>=0.16.0
26
+
27
+ # Gradio
28
+ gradio>=3.50.0
29
+
30
+ # Optional GPU dependencies
31
+ scipy>=1.11.0
32
+ numpy>=1.26.0