akhaliq HF staff commited on
Commit
e82e693
β€’
1 Parent(s): 2e3d753

add requirements

Browse files
Files changed (1) hide show
  1. requirements.txt +40 -0
requirements.txt ADDED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
13
+ torchvision>=0.8.1
14
+ tqdm>=4.41.0
15
+ protobuf<=3.20.1 # 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
+ # scikit-learn==0.19.2 # CoreML quantization
30
+ # tensorflow>=2.4.1 # TFLite export
31
+ # tensorflowjs>=3.9.0 # TF.js export
32
+ # openvino-dev # OpenVINO export
33
+
34
+ # Extras --------------------------------------
35
+ ipython # interactive notebook
36
+ psutil # system utilization
37
+ thop # FLOPs computation
38
+ # albumentations>=1.0.3
39
+ # pycocotools>=2.0 # COCO mAP
40
+ # roboflow