ONNX
qmller commited on
Commit
23d2d79
·
verified ·
1 Parent(s): f80f126

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +53 -3
README.md CHANGED
@@ -1,3 +1,53 @@
1
- ---
2
- license: agpl-3.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: gpl-3.0
3
+ datasets:
4
+ - detection-datasets/coco
5
+ ---
6
+
7
+ # Introduction
8
+
9
+ This repository stores the model for YOLOv5, compatible with Kalray's neural network API. </br>
10
+ Please see www.github.com/kalray/kann-model-zoo for details and proper usage [WIKI](https://github.com/kalray/kann-model-zoo/wiki). </br>
11
+
12
+ # Contents
13
+
14
+ ONNX model are described below:
15
+ | Model | FLOPs | Params | mAP-50 | mAP-50/95 |
16
+ |--------------------|---------|---------|--------|-----------|
17
+ | yolov5nu.onnx | 8.0 G | 2.6 M | 48.9 % | 34.4 %* |
18
+ | yolov5su.onnx | 24.4 G | 9.1 M | 58.9 % | 43.1 %* |
19
+ | yolov5su_relu.onnx | 24.4 G | 9.1 M | 54.7 % | 39.0 %* |
20
+ | yolov5mu.onnx | 64.9 G | 25.0 M | 65.0 % | 49.3 %* |
21
+ | yolov5lu.onnx | 136.1 G | 53.1 M | 68.2% | 52.3 %* |
22
+ | yolov5xu.onnx | 248.0 G | 97.1 M | 69.3 % | 53.7 %* |
23
+
24
+ # Lecture note reference
25
+
26
+
27
+ # Repository or links references
28
+
29
+ - repository: https://github.com/ultralytics/yolov5
30
+ - configuration : https://github.com/ultralytics/ultralytics/blob/main/ultralytics/cfg/models/v5/yolov5.yaml
31
+ - weights:
32
+ - https://github.com/ultralytics/assets/releases/download/v8.3.0/yolov5nu.pt
33
+ - https://github.com/ultralytics/assets/releases/download/v8.3.0/yolov5su.pt
34
+ - https://github.com/ultralytics/assets/releases/download/v8.3.0/yolov5mu.pt
35
+ - https://github.com/ultralytics/assets/releases/download/v8.3.0/yolov5lu.pt
36
+ - https://github.com/ultralytics/assets/releases/download/v8.3.0/yolov5xu.pt
37
+
38
+
39
+ BibTeX entry and citation info
40
+ ```
41
+ @software{yolov5,
42
+ title = {Ultralytics YOLOv5},
43
+ author = {Glenn Jocher},
44
+ year = {2020},
45
+ version = {7.0},
46
+ license = {AGPL-3.0},
47
+ url = {https://github.com/ultralytics/yolov5},
48
+ doi = {10.5281/zenodo.3908559},
49
+ orcid = {0000-0001-5950-6979}
50
+ }
51
+ ```
52
+
53
+ Authors: Quentin Muller, <[email protected]>