Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,40 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
datasets:
|
3 |
+
- detection-datasets/coco
|
4 |
+
license: gpl-3.0
|
5 |
+
---
|
6 |
+
|
7 |
+
# Introduction
|
8 |
+
|
9 |
+
This repository stores the model for YOLOv7, 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: yolov7-tiny.optimized.onnx
|
15 |
+
|
16 |
+
# Lecture note reference
|
17 |
+
|
18 |
+
+ YOLOv7: Trainable bag-of-freebies sets new state-of-the-art for real-time object detectors, https://arxiv.org/abs/2207.02696
|
19 |
+
|
20 |
+
# Repository or links references
|
21 |
+
|
22 |
+
- https://github.com/WongKinYiu/yolov7
|
23 |
+
- config / weights: https://github.com/WongKinYiu/yolov7/releases/download/v0.1/yolov7-tiny.pt
|
24 |
+
|
25 |
+
|
26 |
+
BibTeX entry and citation info
|
27 |
+
```
|
28 |
+
@inproceedings{wang2023yolov7,
|
29 |
+
title={{YOLOv7}: Trainable bag-of-freebies sets new state-of-the-art for real-time object detectors},
|
30 |
+
author={Wang, Chien-Yao and Bochkovskiy, Alexey and Liao, Hong-Yuan Mark},
|
31 |
+
booktitle={Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR)},
|
32 |
+
year={2023}
|
33 |
+
}
|
34 |
+
@article{wang2023designing,
|
35 |
+
title={Designing Network Design Strategies Through Gradient Path Analysis},
|
36 |
+
author={Wang, Chien-Yao and Liao, Hong-Yuan Mark and Yeh, I-Hau},
|
37 |
+
journal={Journal of Information Science and Engineering},
|
38 |
+
year={2023}
|
39 |
+
}
|
40 |
+
```
|