Manasee27 commited on
Commit
37829ab
·
verified ·
1 Parent(s): 959c56d

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +51 -5
requirements.txt CHANGED
@@ -1,7 +1,53 @@
1
 
2
- torch
3
- transformers
4
- gradio
5
- yolov5==4.0.3
6
- ultralytics
7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
 
 
 
 
 
 
2
 
3
+
4
+ # YOLOv5 requirements
5
+ # Usage: pip install -r requirements.txt
6
+
7
+ # Base ------------------------------------------------------------------------
8
+ gitpython>=3.1.30
9
+ matplotlib>=3.3
10
+ numpy>=1.23.5
11
+ opencv-python>=4.1.1
12
+ pillow>=10.3.0
13
+ psutil # system resources
14
+ PyYAML>=5.3.1
15
+ requests>=2.23.0
16
+ scipy>=1.4.1
17
+ thop>=0.1.1 # FLOPs computation
18
+ torch>=1.8.0 # see https://pytorch.org/get-started/locally (recommended)
19
+ torchvision>=0.9.0
20
+ tqdm>=4.64.0
21
+ ultralytics>=8.0.232
22
+ # protobuf<=3.20.1 # https://github.com/ultralytics/yolov5/issues/8012
23
+
24
+ # Logging ---------------------------------------------------------------------
25
+ # tensorboard>=2.4.1
26
+ # clearml>=1.2.0
27
+ # comet
28
+
29
+ # Plotting --------------------------------------------------------------------
30
+ pandas>=1.1.4
31
+ seaborn>=0.11.0
32
+
33
+ # Export ----------------------------------------------------------------------
34
+ # coremltools>=6.0 # CoreML export
35
+ # onnx>=1.10.0 # ONNX export
36
+ # onnx-simplifier>=0.4.1 # ONNX simplifier
37
+ # nvidia-pyindex # TensorRT export
38
+ # nvidia-tensorrt # TensorRT export
39
+ # scikit-learn<=1.1.2 # CoreML quantization
40
+ # tensorflow>=2.4.0,<=2.13.1 # TF exports (-cpu, -aarch64, -macos)
41
+ # tensorflowjs>=3.9.0 # TF.js export
42
+ # openvino-dev>=2023.0 # OpenVINO export
43
+
44
+ # Deploy ----------------------------------------------------------------------
45
+ setuptools>=65.5.1 # Snyk vulnerability fix
46
+ # tritonclient[all]~=2.24.0
47
+
48
+ # Extras ----------------------------------------------------------------------
49
+ # ipython # interactive notebook
50
+ # mss # screenshots
51
+ # albumentations>=1.0.3
52
+ # pycocotools>=2.0.6 # COCO mAP
53
+ wheel>=0.38.0 # not directly required, pinned by Snyk to avoid a vulnerability