Spaces:
Runtime error
Runtime error
Update requirements.txt
Browse files- requirements.txt +40 -7
requirements.txt
CHANGED
@@ -1,20 +1,53 @@
|
|
1 |
-
gradio
|
2 |
ipython
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4 |
matplotlib>=3.2.2
|
5 |
numpy>=1.18.5
|
6 |
-
opencv-python>=4.1.
|
7 |
Pillow>=7.1.2
|
|
|
8 |
PyYAML>=5.3.1
|
9 |
requests>=2.23.0
|
10 |
scipy>=1.4.1
|
11 |
-
|
|
|
12 |
torchvision>=0.8.1
|
13 |
-
tqdm>=4.
|
|
|
14 |
|
|
|
|
|
|
|
|
|
15 |
|
16 |
-
|
17 |
-
# Plotting ------------------------------------
|
18 |
pandas>=1.1.4
|
19 |
seaborn>=0.11.0
|
20 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
gradio >=3.8
|
2 |
ipython
|
3 |
+
|
4 |
+
|
5 |
+
# YOLOv5 🚀 requirements
|
6 |
+
# Usage: pip install -r requirements.txt
|
7 |
+
|
8 |
+
# Base ------------------------------------------------------------------------
|
9 |
+
gitpython
|
10 |
+
ipython # interactive notebook
|
11 |
matplotlib>=3.2.2
|
12 |
numpy>=1.18.5
|
13 |
+
opencv-python>=4.1.1
|
14 |
Pillow>=7.1.2
|
15 |
+
psutil # system resources
|
16 |
PyYAML>=5.3.1
|
17 |
requests>=2.23.0
|
18 |
scipy>=1.4.1
|
19 |
+
thop>=0.1.1 # FLOPs computation
|
20 |
+
torch>=1.7.0 # see https://pytorch.org/get-started/locally (recommended)
|
21 |
torchvision>=0.8.1
|
22 |
+
tqdm>=4.64.0
|
23 |
+
# protobuf<=3.20.1 # https://github.com/ultralytics/yolov5/issues/8012
|
24 |
|
25 |
+
# Logging ---------------------------------------------------------------------
|
26 |
+
tensorboard>=2.4.1
|
27 |
+
# clearml>=1.2.0
|
28 |
+
# comet
|
29 |
|
30 |
+
# Plotting --------------------------------------------------------------------
|
|
|
31 |
pandas>=1.1.4
|
32 |
seaborn>=0.11.0
|
33 |
|
34 |
+
# Export ----------------------------------------------------------------------
|
35 |
+
# coremltools>=6.0 # CoreML export
|
36 |
+
# onnx>=1.9.0 # ONNX export
|
37 |
+
# onnx-simplifier>=0.4.1 # ONNX simplifier
|
38 |
+
# nvidia-pyindex # TensorRT export
|
39 |
+
# nvidia-tensorrt # TensorRT export
|
40 |
+
# scikit-learn<=1.1.2 # CoreML quantization
|
41 |
+
# tensorflow>=2.4.1 # TF exports (-cpu, -aarch64, -macos)
|
42 |
+
# tensorflowjs>=3.9.0 # TF.js export
|
43 |
+
# openvino-dev # OpenVINO export
|
44 |
+
|
45 |
+
# Deploy ----------------------------------------------------------------------
|
46 |
+
# tritonclient[all]~=2.24.0
|
47 |
+
|
48 |
+
# Extras ----------------------------------------------------------------------
|
49 |
+
# mss # screenshots
|
50 |
+
# albumentations>=1.0.3
|
51 |
+
# pycocotools>=2.0 # COCO mAP
|
52 |
+
# roboflow
|
53 |
+
# ultralytics # HUB https://hub.ultralytics.com
|