ethanrom commited on
Commit
3eab993
·
1 Parent(s): 052e4f7

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +47 -9
requirements.txt CHANGED
@@ -1,9 +1,47 @@
1
- Pillow # PIL
2
- opencv-python
3
- torch
4
- torchvision
5
- numpy
6
- tqdm
7
- pandas
8
- matplotlib
9
- ipython
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
12
+ torch>=1.7.0 # see https://pytorch.org/get-started/locally/ (recommended)
13
+ torchvision>=0.8.1
14
+ tqdm>=4.64.0
15
+ # protobuf<=3.20.1 # https://github.com/ultralytics/yolov5/issues/8012
16
+
17
+ # Logging -------------------------------------
18
+ tensorboard>=2.4.1
19
+ # clearml>=1.2.0
20
+ # comet
21
+
22
+ # Plotting ------------------------------------
23
+ pandas>=1.1.4
24
+ seaborn>=0.11.0
25
+
26
+ # Export --------------------------------------
27
+ # coremltools>=6.0 # CoreML export
28
+ # onnx>=1.9.0 # ONNX export
29
+ # onnx-simplifier>=0.4.1 # ONNX simplifier
30
+ # nvidia-pyindex # TensorRT export
31
+ # nvidia-tensorrt # TensorRT export
32
+ # scikit-learn<=1.1.2 # CoreML quantization
33
+ # tensorflow>=2.4.1 # TF exports (-cpu, -aarch64, -macos)
34
+ # tensorflowjs>=3.9.0 # TF.js export
35
+ # openvino-dev # OpenVINO export
36
+
37
+ # Deploy --------------------------------------
38
+ # tritonclient[all]~=2.24.0
39
+
40
+ # Extras --------------------------------------
41
+ ipython # interactive notebook
42
+ psutil # system utilization
43
+ thop>=0.1.1 # FLOPs computation
44
+ # mss # screenshots
45
+ # albumentations>=1.0.3
46
+ # pycocotools>=2.0 # COCO mAP
47
+ # roboflow