ONNX
qmller commited on
Commit
917c7d3
1 Parent(s): 8f0a7ec

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +43 -0
README.md ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ datasets:
4
+ - detection-datasets/coco
5
+ ---
6
+
7
+ # Introduction
8
+
9
+ This repository stores the model for YOLOv4-CSP-S-ReLU, compatible with Kalray's neural network API. </br>
10
+ Please see www.github.com/kalray/kann-models-zoo for details and proper usage. </br>
11
+
12
+ # Contents
13
+
14
+ - ONNX: yolov4-tiny.onnx
15
+
16
+ # Lecture note reference
17
+
18
+ + YOLOv4: Optimal Speed and Accuracy of Object Detection, https://arxiv.org/pdf/2004.10934.pdf
19
+
20
+ # Repository or links references
21
+
22
+ - https://github.com/onnx/models/blob/main/vision/object_detection_segmentation/yolov4/model/yolov4.onnx
23
+ (result of the conversion from https://github.com/hunglc007/tensorflow-yolov4-tflite)
24
+
25
+ BibTeX entry and citation info
26
+ ```
27
+ @misc{bochkovskiy2020yolov4,
28
+ title={YOLOv4: Optimal Speed and Accuracy of Object Detection},
29
+ author={Alexey Bochkovskiy and Chien-Yao Wang and Hong-Yuan Mark Liao},
30
+ year={2020},
31
+ eprint={2004.10934},
32
+ archivePrefix={arXiv},
33
+ primaryClass={cs.CV}
34
+ }
35
+ @InProceedings{Wang_2021_CVPR,
36
+ author = {Wang, Chien-Yao and Bochkovskiy, Alexey and Liao, Hong-Yuan Mark},
37
+ title = {{Scaled-YOLOv4}: Scaling Cross Stage Partial Network},
38
+ booktitle = {Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR)},
39
+ month = {June},
40
+ year = {2021},
41
+ pages = {13029-13038}
42
+ }
43
+ ```