Alessio Grancini
commited on
Update requirements.txt
Browse files- requirements.txt +18 -39
requirements.txt
CHANGED
|
@@ -1,7 +1,4 @@
|
|
| 1 |
-
#
|
| 2 |
-
# Usage: pip install -r requirements.txt
|
| 3 |
-
|
| 4 |
-
# Base ----------------------------------------
|
| 5 |
matplotlib>=3.2.2
|
| 6 |
numpy>=1.21.6
|
| 7 |
opencv-python>=4.6.0
|
|
@@ -9,46 +6,28 @@ Pillow>=7.1.2
|
|
| 9 |
PyYAML>=5.3.1
|
| 10 |
requests>=2.23.0
|
| 11 |
scipy>=1.4.1
|
| 12 |
-
torch>=1.7.0
|
| 13 |
-
torchvision>=0.8.1
|
| 14 |
tqdm>=4.64.0
|
| 15 |
-
gradio==3.26.0
|
| 16 |
-
ultralytics>=8.0.132
|
| 17 |
urllib3>=1.26.14
|
| 18 |
-
timm==0.6.12
|
| 19 |
-
open3d==0.16.0
|
| 20 |
-
open3d-python==0.3.0.0
|
| 21 |
|
| 22 |
-
#
|
| 23 |
-
|
| 24 |
-
#
|
| 25 |
-
#
|
|
|
|
| 26 |
|
| 27 |
-
#
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 28 |
pandas>=1.1.4
|
| 29 |
seaborn>=0.11.0
|
| 30 |
|
| 31 |
-
#
|
| 32 |
-
|
| 33 |
-
|
| 34 |
-
# onnxsim>=0.4.1 # ONNX simplifier
|
| 35 |
-
# nvidia-pyindex # TensorRT export
|
| 36 |
-
# nvidia-tensorrt # TensorRT export
|
| 37 |
-
# scikit-learn==0.19.2 # CoreML quantization
|
| 38 |
-
# tensorflow>=2.4.1 # TF exports (-cpu, -aarch64, -macos)
|
| 39 |
-
# tflite-support
|
| 40 |
-
# tensorflowjs>=3.9.0 # TF.js export
|
| 41 |
-
# openvino-dev>=2022.3 # OpenVINO export
|
| 42 |
-
|
| 43 |
-
# Extras --------------------------------------
|
| 44 |
-
psutil # system utilization
|
| 45 |
-
thop>=0.1.1 # FLOPs computation
|
| 46 |
-
# ipython # interactive notebook
|
| 47 |
-
# albumentations>=1.0.3
|
| 48 |
-
# pycocotools>=2.0.6 # COCO mAP
|
| 49 |
-
# roboflow
|
| 50 |
|
| 51 |
-
#
|
| 52 |
-
|
| 53 |
-
gradio>=4.0.0
|
| 54 |
-
spaces
|
|
|
|
| 1 |
+
# Base requirements
|
|
|
|
|
|
|
|
|
|
| 2 |
matplotlib>=3.2.2
|
| 3 |
numpy>=1.21.6
|
| 4 |
opencv-python>=4.6.0
|
|
|
|
| 6 |
PyYAML>=5.3.1
|
| 7 |
requests>=2.23.0
|
| 8 |
scipy>=1.4.1
|
|
|
|
|
|
|
| 9 |
tqdm>=4.64.0
|
|
|
|
|
|
|
| 10 |
urllib3>=1.26.14
|
|
|
|
|
|
|
|
|
|
| 11 |
|
| 12 |
+
# ZeroGPU specific requirements
|
| 13 |
+
torch==2.4.0 # Specific version for ZeroGPU
|
| 14 |
+
torchvision==0.15.0 # Compatible with torch 2.4.0
|
| 15 |
+
gradio>=4.0.0 # Required for ZeroGPU
|
| 16 |
+
spaces # Required for ZeroGPU
|
| 17 |
|
| 18 |
+
# Model specific
|
| 19 |
+
ultralytics>=8.0.132
|
| 20 |
+
timm==0.6.12
|
| 21 |
+
|
| 22 |
+
# Visualization
|
| 23 |
+
open3d==0.16.0
|
| 24 |
+
plotly # For 3D visualization
|
| 25 |
pandas>=1.1.4
|
| 26 |
seaborn>=0.11.0
|
| 27 |
|
| 28 |
+
# Utilities
|
| 29 |
+
psutil
|
| 30 |
+
thop>=0.1.1
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 31 |
|
| 32 |
+
# Remove conflicting package
|
| 33 |
+
# open3d-python==0.3.0.0 # Remove this as it conflicts with open3d
|
|
|
|
|
|