samH98 commited on
Commit
e2696cc
·
1 Parent(s): 75386cc

Upload requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +28 -0
requirements.txt ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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-headless
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<4.21.5 # https://github.com/ultralytics/yolov5/issues/8012
16
+
17
+
18
+ # Plotting ------------------------------------
19
+ pandas>=1.1.4
20
+ seaborn>=0.11.0
21
+
22
+
23
+ # Extras --------------------------------------
24
+ ipython # interactive notebook
25
+ psutil # system utilization
26
+ thop # FLOPs computation
27
+ GitPython>=3.1.24
28
+ wget