ONNX
qmller commited on
Commit
c0eca5d
·
verified ·
1 Parent(s): d30db78

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +34 -0
README.md ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ datasets:
4
+ - detection-datasets/coco
5
+ ---
6
+
7
+ # Introduction
8
+
9
+ This repository stores the model for YOLOv3, 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: yolov3.onnx
15
+ - Tensorflow: yolov3.pb
16
+
17
+ # Lecture note reference
18
+
19
+ + YOLOv3: An Incremental Improvement, https://arxiv.org/abs/1804.02767
20
+ + You Only Look Once: Unified, Real-Time Object Detection, https://arxiv.org/abs/1506.02640
21
+
22
+ # Repository or links references
23
+
24
+ - https://github.com/pjreddie/darknet
25
+
26
+ BibTeX entry and citation info
27
+ ```
28
+ @article{ redmon2018yolov3,
29
+ title={ YOLOv3: An Incremental Improvement },
30
+ author={ Redmon, Joseph and Farhadi, Ali },
31
+ journal={ arXiv preprint arXiv:1804.02767 },
32
+ year={ 2018 }
33
+ }
34
+ ```