Spaces:
Sleeping
Sleeping
Update requirements.txt
Browse files- requirements.txt +12 -13
requirements.txt
CHANGED
|
@@ -1,23 +1,22 @@
|
|
| 1 |
# Core Dependencies
|
| 2 |
numpy==1.24.3
|
| 3 |
-
opencv-python==4.8.1.78
|
| 4 |
scipy==1.11.4
|
| 5 |
|
| 6 |
-
#
|
| 7 |
-
torch==2.1.
|
| 8 |
-
torchvision==0.16.
|
| 9 |
-
|
|
|
|
|
|
|
| 10 |
|
| 11 |
# Data Processing
|
| 12 |
pandas==2.1.4
|
| 13 |
openpyxl==3.1.2
|
| 14 |
|
| 15 |
-
#
|
| 16 |
-
|
| 17 |
-
PyYAML==6.0.1 # Configuration files
|
| 18 |
-
|
| 19 |
-
# Optional visualization (can be removed if client doesn't need)
|
| 20 |
-
matplotlib==3.8.0
|
| 21 |
-
seaborn==0.13.0
|
| 22 |
|
| 23 |
-
|
|
|
|
|
|
|
|
|
| 1 |
# Core Dependencies
|
| 2 |
numpy==1.24.3
|
| 3 |
+
opencv-python-headless==4.8.1.78
|
| 4 |
scipy==1.11.4
|
| 5 |
|
| 6 |
+
# PyTorch (CPU version for better compatibility)
|
| 7 |
+
torch==2.1.2
|
| 8 |
+
torchvision==0.16.2
|
| 9 |
+
|
| 10 |
+
# CRITICAL: Ultralytics must be >= 8.3.0 for YOLO11 support
|
| 11 |
+
ultralytics==8.3.0
|
| 12 |
|
| 13 |
# Data Processing
|
| 14 |
pandas==2.1.4
|
| 15 |
openpyxl==3.1.2
|
| 16 |
|
| 17 |
+
# UI
|
| 18 |
+
gradio==4.44.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 19 |
|
| 20 |
+
# Optional utilities
|
| 21 |
+
tqdm==4.66.1
|
| 22 |
+
PyYAML==6.0.1
|