mlbench123 commited on
Commit
36536c7
·
verified ·
1 Parent(s): 46c1c56

Update requirements.txt

Browse files
Files changed (1) hide show
  1. 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
- # Computer Vision & Object Detection (CPU-only for Mac)
7
- torch==2.1.0
8
- torchvision==0.16.0
9
- ultralytics==8.1.3
 
 
10
 
11
  # Data Processing
12
  pandas==2.1.4
13
  openpyxl==3.1.2
14
 
15
- # Optional but recommended for better UX
16
- tqdm==4.66.1 # Progress bars
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
- gradio>=4.0.0
 
 
 
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