Update requirements.txt
Browse files- requirements.txt +23 -1
requirements.txt
CHANGED
|
@@ -1,4 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
gradio>=4.0.0
|
|
|
|
|
|
|
| 2 |
Pillow>=9.0.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
numpy>=1.21.0
|
| 4 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Core dependencies
|
| 2 |
+
torch>=2.0.0
|
| 3 |
+
torchvision>=0.15.0
|
| 4 |
+
transformers>=4.30.0
|
| 5 |
gradio>=4.0.0
|
| 6 |
+
|
| 7 |
+
# Image processing
|
| 8 |
Pillow>=9.0.0
|
| 9 |
+
pillow-avif>=1.3.0
|
| 10 |
+
opencv-python>=4.8.0
|
| 11 |
+
rembg>=2.0.50
|
| 12 |
+
|
| 13 |
+
# Data processing
|
| 14 |
numpy>=1.21.0
|
| 15 |
+
pandas>=1.5.0
|
| 16 |
+
|
| 17 |
+
# HTTP requests and environment
|
| 18 |
+
requests>=2.28.0
|
| 19 |
+
python-dotenv>=1.0.0
|
| 20 |
+
|
| 21 |
+
# Utilities
|
| 22 |
+
lru-dict>=1.1.8
|
| 23 |
+
|
| 24 |
+
# Optional: For better performance
|
| 25 |
+
accelerate>=0.20.0
|
| 26 |
+
xformers>=0.0.20
|