Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: mit
|
3 |
+
datasets:
|
4 |
+
- detection-datasets/coco
|
5 |
+
---
|
6 |
+
|
7 |
+
# Introduction
|
8 |
+
|
9 |
+
This repository stores the model for YOLOv3-tiny, 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.optimized.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 |
+
- config: https://raw.githubusercontent.com/AlexeyAB/darknet/master/cfg/yolov3-tiny.cfg
|
26 |
+
- weights: https://pjreddie.com/media/files/yolov3-tiny.weights
|
27 |
+
|
28 |
+
BibTeX entry and citation info
|
29 |
+
```
|
30 |
+
@article{ redmon2018yolov3,
|
31 |
+
title={ YOLOv3: An Incremental Improvement },
|
32 |
+
author={ Redmon, Joseph and Farhadi, Ali },
|
33 |
+
journal={ arXiv preprint arXiv:1804.02767 },
|
34 |
+
year={ 2018 }
|
35 |
+
}
|
36 |
+
```
|