Spaces:
Runtime error
Runtime error
Zengyf-CVer
commited on
Commit
•
da6cb59
1
Parent(s):
0c1a8ce
app update
Browse files- requirements.txt +25 -29
requirements.txt
CHANGED
@@ -1,47 +1,43 @@
|
|
1 |
-
#
|
2 |
-
# pip install -r requirements.txt
|
3 |
-
# pip 22.1.2
|
4 |
|
5 |
# Base ----------------------------------------
|
6 |
-
matplotlib
|
7 |
-
numpy
|
8 |
-
opencv-python
|
9 |
-
Pillow
|
10 |
-
PyYAML
|
11 |
-
requests
|
12 |
-
scipy # Google Colab version
|
13 |
-
torch # https://github.com/ultralytics/yolov5/issues/8395
|
14 |
-
torchvision # https://github.com/ultralytics/yolov5/issues/8395
|
15 |
-
tqdm
|
16 |
-
protobuf # https://github.com/ultralytics/yolov5/issues/8012
|
17 |
-
|
18 |
-
|
19 |
-
# Streamlit YOLOv5 Model2X
|
20 |
-
streamlit
|
21 |
-
|
22 |
|
23 |
# Logging -------------------------------------
|
24 |
-
tensorboard
|
25 |
# wandb
|
26 |
|
27 |
# Plotting ------------------------------------
|
28 |
-
pandas
|
29 |
-
seaborn
|
30 |
|
31 |
# Export --------------------------------------
|
32 |
-
coremltools # CoreML export
|
33 |
-
onnx # ONNX export
|
34 |
-
onnx-simplifier # ONNX simplifier
|
35 |
onnxruntime
|
36 |
-
|
37 |
-
|
38 |
-
|
|
|
|
|
39 |
openvino-dev # OpenVINO export
|
40 |
|
41 |
# Extras --------------------------------------
|
42 |
ipython # interactive notebook
|
43 |
psutil # system utilization
|
44 |
-
thop # FLOPs computation
|
45 |
# albumentations>=1.0.3
|
46 |
# pycocotools>=2.0 # COCO mAP
|
47 |
# roboflow
|
|
|
1 |
+
# YOLOv5 requirements
|
2 |
+
# Usage: pip install -r requirements.txt
|
|
|
3 |
|
4 |
# Base ----------------------------------------
|
5 |
+
matplotlib>=3.2.2
|
6 |
+
numpy>=1.18.5
|
7 |
+
opencv-python>=4.1.1
|
8 |
+
Pillow>=7.1.2
|
9 |
+
PyYAML>=5.3.1
|
10 |
+
requests>=2.23.0
|
11 |
+
scipy>=1.4.1 # Google Colab version
|
12 |
+
torch>=1.7.0,!=1.12.0 # https://github.com/ultralytics/yolov5/issues/8395
|
13 |
+
torchvision>=0.8.1,!=0.13.0 # https://github.com/ultralytics/yolov5/issues/8395
|
14 |
+
tqdm>=4.41.0
|
15 |
+
protobuf<4.21.3 # https://github.com/ultralytics/yolov5/issues/8012
|
|
|
|
|
|
|
|
|
|
|
16 |
|
17 |
# Logging -------------------------------------
|
18 |
+
tensorboard>=2.4.1
|
19 |
# wandb
|
20 |
|
21 |
# Plotting ------------------------------------
|
22 |
+
pandas>=1.1.4
|
23 |
+
seaborn>=0.11.0
|
24 |
|
25 |
# Export --------------------------------------
|
26 |
+
coremltools>=4.1 # CoreML export
|
27 |
+
onnx>=1.9.0 # ONNX export
|
28 |
+
onnx-simplifier>=0.3.6 # ONNX simplifier
|
29 |
onnxruntime
|
30 |
+
# nvidia-pyindex # TensorRT export
|
31 |
+
# nvidia-tensorrt # TensorRT export
|
32 |
+
scikit-learn==0.19.2 # CoreML quantization
|
33 |
+
tensorflow-gpu>=2.4.1 # TFLite export
|
34 |
+
tensorflowjs>=3.9.0 # TF.js export
|
35 |
openvino-dev # OpenVINO export
|
36 |
|
37 |
# Extras --------------------------------------
|
38 |
ipython # interactive notebook
|
39 |
psutil # system utilization
|
40 |
+
thop>=0.1.0 # FLOPs computation
|
41 |
# albumentations>=1.0.3
|
42 |
# pycocotools>=2.0 # COCO mAP
|
43 |
# roboflow
|