owaiskha9654 commited on
Commit
14e87ce
1 Parent(s): ed4ebdc

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +31 -8
requirements.txt CHANGED
@@ -1,18 +1,41 @@
 
 
 
 
 
1
  matplotlib>=3.2.2
2
- gradio==3.1.4
3
  numpy>=1.18.5
4
  opencv-python>=4.1.1
5
  Pillow>=7.1.2
6
  PyYAML>=5.3.1
7
  requests>=2.23.0
8
- scipy>=1.4.1
9
- torch>=1.7.0
10
- torchvision>=0.8.1
11
  tqdm>=4.41.0
12
- protobuf<=3.20.1
 
 
13
  tensorboard>=2.4.1
 
 
 
14
  pandas>=1.1.4
15
  seaborn>=0.11.0
16
- ipython
17
- psutil
18
- thop
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #Yolov7 WongKinYiu Requirements
2
+
3
+ # Usage: pip install -r requirements.txt
4
+
5
+ # Base ----------------------------------------
6
  matplotlib>=3.2.2
 
7
  numpy>=1.18.5
8
  opencv-python>=4.1.1
9
  Pillow>=7.1.2
10
  PyYAML>=5.3.1
11
  requests>=2.23.0
12
+ scipy>=1.4.1
13
+ torch>=1.7.0,!=1.12.0
14
+ torchvision>=0.8.1,!=0.13.0
15
  tqdm>=4.41.0
16
+ protobuf<4.21.3
17
+
18
+ # Logging -------------------------------------
19
  tensorboard>=2.4.1
20
+ # wandb
21
+
22
+ # Plotting ------------------------------------
23
  pandas>=1.1.4
24
  seaborn>=0.11.0
25
+
26
+ # Export --------------------------------------
27
+ # coremltools>=4.1 # CoreML export
28
+ # onnx>=1.9.0 # ONNX export
29
+ # onnx-simplifier>=0.3.6 # ONNX simplifier
30
+ # scikit-learn==0.19.2 # CoreML quantization
31
+ # tensorflow>=2.4.1 # TFLite export
32
+ # tensorflowjs>=3.9.0 # TF.js export
33
+ # openvino-dev # OpenVINO export
34
+
35
+ # Extras --------------------------------------
36
+ ipython # interactive notebook
37
+ psutil # system utilization
38
+ thop # FLOPs computation
39
+ # albumentations>=1.0.3
40
+ # pycocotools>=2.0 # COCO mAP
41
+ # roboflow