push app
Browse files- requirements.txt +10 -10
requirements.txt
CHANGED
|
@@ -1,21 +1,21 @@
|
|
| 1 |
# Core dependencies
|
| 2 |
streamlit>=1.28.0
|
| 3 |
-
torch
|
| 4 |
-
torchvision
|
| 5 |
-
ultralytics==8.0.
|
| 6 |
|
| 7 |
# Hugging Face ecosystem
|
| 8 |
-
diffusers
|
| 9 |
-
transformers
|
| 10 |
-
huggingface-hub
|
| 11 |
|
| 12 |
# Image processing
|
| 13 |
-
opencv-python
|
| 14 |
-
matplotlib
|
| 15 |
-
pillow
|
| 16 |
|
| 17 |
# Additional
|
| 18 |
-
accelerate
|
| 19 |
|
| 20 |
# FastSAM from specific commit
|
| 21 |
git+https://github.com/CASIA-IVA-Lab/FastSAM.git
|
|
|
|
| 1 |
# Core dependencies
|
| 2 |
streamlit>=1.28.0
|
| 3 |
+
torch
|
| 4 |
+
torchvision
|
| 5 |
+
ultralytics==8.0.121 # Critical for FastSAM
|
| 6 |
|
| 7 |
# Hugging Face ecosystem
|
| 8 |
+
diffusers>=0.19.0
|
| 9 |
+
transformers>=4.34.0
|
| 10 |
+
huggingface-hub>=0.17.0
|
| 11 |
|
| 12 |
# Image processing
|
| 13 |
+
opencv-python>=4.7.0.72
|
| 14 |
+
matplotlib>=3.7.2
|
| 15 |
+
pillow>=9.5.0
|
| 16 |
|
| 17 |
# Additional
|
| 18 |
+
accelerate>=0.24.0
|
| 19 |
|
| 20 |
# FastSAM from specific commit
|
| 21 |
git+https://github.com/CASIA-IVA-Lab/FastSAM.git
|