stphtan94117 commited on
Commit
fb96f4b
·
1 Parent(s): 339f0eb

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +40 -30
requirements.txt CHANGED
@@ -1,42 +1,52 @@
1
- # pip install -r requirements.txt
 
2
 
3
- # base ----------------------------------------
4
- matplotlib>=3.2.2
5
- numpy>=1.18.5
6
- opencv-python-headless
7
- Pillow
8
- PyYAML>=5.3.1
 
9
  scipy>=1.4.1
10
- torch>=1.8.1
11
- torchvision>=0.8.1
12
- tqdm>=4.41.0
13
- ultralytics>=8.0.116
14
- psutil==5.9.5
15
- opencv-python==4.7.0.72
16
- pandas==2.0.2
17
 
18
- # logging -------------------------------------
19
- tensorboard>=2.4.1
20
- # wandb
 
 
21
 
22
- # plotting ------------------------------------
 
23
  seaborn>=0.11.0
24
- pandas
25
 
26
- # export --------------------------------------
27
- # coremltools>=4.1
28
- # onnx>=1.9.0
29
- # scikit-learn==0.19.2 # for coreml quantization
 
 
 
 
 
 
 
30
 
31
- # extras --------------------------------------
32
- # Cython # for pycocotools https://github.com/cocodataset/cocoapi/issues/172
33
- # pycocotools>=2.0 # COCO mAP
34
- # albumentations>=1.0.3
35
- thop # FLOPs computation
 
 
 
36
 
37
  gdown
38
 
39
- yolov5==7.0.2
40
  gradio
41
  torch
42
- gradio_client==0.2.7
 
1
+ # Ultralytics requirements
2
+ # Example: pip install -r requirements.txt
3
 
4
+ # Base ----------------------------------------
5
+ matplotlib>=3.3.0
6
+ numpy>=1.22.2 # pinned by Snyk to avoid a vulnerability
7
+ opencv-python>=4.6.0
8
+ pillow>=7.1.2
9
+ pyyaml>=5.3.1
10
+ requests>=2.23.0
11
  scipy>=1.4.1
12
+ torch>=1.8.0
13
+ torchvision>=0.9.0
14
+ tqdm>=4.64.0
 
 
 
 
15
 
16
+ # Logging -------------------------------------
17
+ # tensorboard>=2.13.0
18
+ # dvclive>=2.12.0
19
+ # clearml
20
+ # comet
21
 
22
+ # Plotting ------------------------------------
23
+ pandas>=1.1.4
24
  seaborn>=0.11.0
 
25
 
26
+ # Export --------------------------------------
27
+ # coremltools>=7.0 # CoreML export
28
+ # onnx>=1.12.0 # ONNX export
29
+ # onnxsim>=0.4.1 # ONNX simplifier
30
+ # nvidia-pyindex # TensorRT export
31
+ # nvidia-tensorrt # TensorRT export
32
+ # scikit-learn==0.19.2 # CoreML quantization
33
+ # tensorflow>=2.4.1 # TF exports (-cpu, -aarch64, -macos)
34
+ # tflite-support
35
+ # tensorflowjs>=3.9.0 # TF.js export
36
+ # openvino-dev>=2023.0 # OpenVINO export
37
 
38
+ # Extras --------------------------------------
39
+ psutil # system utilization
40
+ py-cpuinfo # display CPU info
41
+ thop>=0.1.1 # FLOPs computation
42
+ # ipython # interactive notebook
43
+ # albumentations>=1.0.3 # training augmentations
44
+ # pycocotools>=2.0.6 # COCO mAP
45
+ # roboflow
46
 
47
  gdown
48
 
49
+ yolov5
50
  gradio
51
  torch
52
+ gradio_client