Spaces:
Sleeping
Sleeping
Update requirements.txt
Browse files- requirements.txt +9 -1
requirements.txt
CHANGED
|
@@ -1,17 +1,25 @@
|
|
|
|
|
| 1 |
autogluon.tabular==1.4.0
|
| 2 |
ultralytics==8.2.73
|
| 3 |
numpy==1.26.4
|
| 4 |
pandas==2.1.4
|
| 5 |
scipy==1.11.4
|
| 6 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
opencv-python-headless==4.9.0.80
|
| 8 |
ffmpeg-python==0.2.0
|
| 9 |
moviepy==1.0.3
|
| 10 |
|
|
|
|
| 11 |
gradio==4.41.0
|
| 12 |
huggingface_hub==0.24.6
|
| 13 |
|
|
|
|
| 14 |
cloudpickle==3.0.0
|
| 15 |
tqdm==4.66.4
|
| 16 |
requests==2.32.3
|
| 17 |
-
|
|
|
|
| 1 |
+
# Core ML stack
|
| 2 |
autogluon.tabular==1.4.0
|
| 3 |
ultralytics==8.2.73
|
| 4 |
numpy==1.26.4
|
| 5 |
pandas==2.1.4
|
| 6 |
scipy==1.11.4
|
| 7 |
|
| 8 |
+
# ML backends used by AutoGluon
|
| 9 |
+
lightgbm==4.5.0
|
| 10 |
+
xgboost==2.1.1
|
| 11 |
+
catboost==1.2.5
|
| 12 |
+
|
| 13 |
+
# Computer vision + video
|
| 14 |
opencv-python-headless==4.9.0.80
|
| 15 |
ffmpeg-python==0.2.0
|
| 16 |
moviepy==1.0.3
|
| 17 |
|
| 18 |
+
# Gradio app + dependencies
|
| 19 |
gradio==4.41.0
|
| 20 |
huggingface_hub==0.24.6
|
| 21 |
|
| 22 |
+
# Utilities
|
| 23 |
cloudpickle==3.0.0
|
| 24 |
tqdm==4.66.4
|
| 25 |
requests==2.32.3
|
|
|