sagar007 commited on
Commit
28517d0
·
verified ·
1 Parent(s): 0747bb5

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +14 -24
requirements.txt CHANGED
@@ -1,34 +1,24 @@
1
- torch
2
- torchvision
3
- transformers
4
- gradio
5
- Pillow
6
- opencv-python-headless
7
- ultralytics
8
- supervision
9
- huggingface_hub
10
 
11
- # Core UI and ML frameworks
12
- gradio
13
  torch
14
- torchvision
15
-
16
- # Hugging Face model interface
17
  transformers
18
 
19
- # Image handling
20
  Pillow
21
-
22
- # Numerical operations
23
  numpy
24
 
25
- # FastSAM library (will pull its own dependencies like ultralytics)
26
- fastsam
27
 
28
- # Utility for downloading weights in the script
29
- wget
 
 
30
  git+https://github.com/CASIA-IVA-Lab/FastSAM.git
31
 
32
- # Optional: May be needed by some FastSAM backends or configurations
33
- # onnxruntime
34
- ultralytics
 
 
 
1
+ # requirements.txt
 
 
 
 
 
 
 
 
2
 
3
+ # Core ML/Torch
 
4
  torch
 
 
 
5
  transformers
6
 
7
+ # Image/Data Handling
8
  Pillow
 
 
9
  numpy
10
 
11
+ # Web UI
12
+ gradio
13
 
14
+ # Object Detection/Segmentation Base (Dependency for FastSAM)
15
+ ultralytics
16
+
17
+ # Segmentation Model (Installed from Git)
18
  git+https://github.com/CASIA-IVA-Lab/FastSAM.git
19
 
20
+ # Utility for downloading files
21
+ wget
22
+
23
+ # Often implicitly required by ML libraries, especially vision
24
+ # opencv-python-headless