Spaces:
Sleeping
Sleeping
Update requirements.txt
Browse files- requirements.txt +20 -17
requirements.txt
CHANGED
|
@@ -1,25 +1,28 @@
|
|
| 1 |
-
#
|
| 2 |
-
|
| 3 |
-
|
|
|
|
| 4 |
torch==2.2.2
|
| 5 |
torchvision==0.17.2
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
|
|
|
|
|
|
|
|
|
| 10 |
pandas==2.2.2
|
| 11 |
numpy==1.26.4
|
| 12 |
-
|
| 13 |
|
| 14 |
-
#
|
| 15 |
-
|
| 16 |
-
opencv-python-headless==4.9.0.80
|
| 17 |
-
moviepy==1.0.3
|
| 18 |
ffmpeg-python==0.2.0
|
|
|
|
| 19 |
|
| 20 |
-
#
|
| 21 |
-
|
| 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
|