Update README.md

pull/262/head
Kin-Yiu, Wong 2020-11-17 11:59:48 +08:00 committed by GitHub
parent 328ef928f7
commit b73276895f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 16 additions and 1 deletions

View File

@ -1,6 +1,8 @@
# YOLOv4-tiny
This is the implementation of "Scaled-YOLOv4: Scaling Cross Stage Partial Network" using Darknet framwork.
This is the implementation of "[Scaled-YOLOv4: Scaling Cross Stage Partial Network](https://arxiv.org/abs/2011.08036)" using Darknet framwork.
The implementation is supported by [Darknet](https://github.com/AlexeyAB/darknet), just use it.
## Installation
@ -19,6 +21,8 @@ make -j4
## Testing
`[yolov4-tiny.weights]`(https://drive.google.com/file/d/1XLVy_DMjvhhmHucSypL3zeDGDdmCGrsu/view?usp=sharing)
```
# download yolov4-tiny.weights and put it in /yolo/weights/ folder.
./darknet detector valid cfg/coco.data cfg/yolov4-tiny.cfg weights/yolov4-tiny.weights -out yolov4-tiny -gpus 0
@ -52,3 +56,14 @@ For resume training:
# assume the checkpoint is stored in ./coco/.
./darknet detector train cfg/coco.data cfg/yolov4-tiny.cfg coco/yolov4-tiny_last.weights -gpus 0 -dont_show
```
## Citation
```
@article{wang2020scaled,
title={{Scaled-YOLOv4}: Scaling Cross Stage Partial Network},
author={Wang, Chien-Yao and Bochkovskiy, Alexey and Liao, Hong-Yuan Mark},
journal={arXiv preprint arXiv:2011.08036},
year={2020}
}
```