ddriscoll commited on
Commit
37551a6
·
verified ·
1 Parent(s): 676cd59

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +24 -12
requirements.txt CHANGED
@@ -1,12 +1,24 @@
1
- gradio
2
- diffusers
3
- transformers
4
- torch
5
- torchvision
6
- ultralytics
7
- opencv-python
8
- Pillow
9
- realesrgan
10
- wikipedia
11
- requests
12
- basicsr
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Core Libraries
2
+ numpy==1.23.5
3
+ opencv-python==4.8.0.74
4
+ Pillow==10.0.0
5
+ requests==2.31.0
6
+ wikipedia==1.4.0
7
+
8
+ # PyTorch
9
+ torch==2.0.1
10
+
11
+ # Hugging Face Ecosystem
12
+ transformers==4.31.0
13
+ diffusers==0.19.3
14
+ accelerate==0.20.3 # Optional but often required for device_map="auto"
15
+
16
+ # Real-ESRGAN and Dependencies
17
+ realesrgan==0.3.0
18
+ basicsr==1.4.2
19
+
20
+ # Ultralytics (YOLO)
21
+ ultralytics==8.0.120
22
+
23
+ # Gradio
24
+ gradio==3.40.0