mastefan commited on
Commit
1ab41c3
·
verified ·
1 Parent(s): fe7b5ac

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +20 -17
requirements.txt CHANGED
@@ -1,25 +1,28 @@
1
- # ==== Core ML stack ====
2
- autogluon.tabular==1.4.0
3
- fastai==2.7.14
 
4
  torch==2.2.2
5
  torchvision==0.17.2
6
- torchaudio==2.2.2
7
- lightgbm==4.5.0
8
- xgboost==2.1.1
9
- scikit-learn==1.6.1
 
 
 
10
  pandas==2.2.2
11
  numpy==1.26.4
12
- scipy==1.13.1
13
 
14
- # ==== YOLO + vision ====
15
- ultralytics==8.2.73
16
- opencv-python-headless==4.9.0.80
17
- moviepy==1.0.3
18
  ffmpeg-python==0.2.0
 
19
 
20
- # ==== Web / Hugging Face ====
21
- gradio==4.41.0
22
- huggingface_hub==0.24.6
23
- requests==2.32.3
24
- tqdm==4.66.4
25
 
 
 
 
 
1
+ # Core Python version
2
+ python_version >=3.12,<3.13
3
+
4
+ # Deep learning + YOLO
5
  torch==2.2.2
6
  torchvision==0.17.2
7
+ ultralytics==8.2.77
8
+
9
+ # AutoML and predictor stack
10
+ autogluon.tabular==1.4.0
11
+ autogluon.core==1.4.0
12
+ fastai==2.7.13
13
+ fastcore==1.5.29
14
  pandas==2.2.2
15
  numpy==1.26.4
16
+ scikit-learn==1.4.2
17
 
18
+ # Gradio GUI + visualization
19
+ gradio==4.29.0
 
 
20
  ffmpeg-python==0.2.0
21
+ huggingface_hub==0.24.5
22
 
23
+ # MoviePy for video clipping
24
+ moviepy==1.0.3
 
 
 
25
 
26
+ # General utilities
27
+ tqdm==4.66.5
28
+ requests==2.32.3