Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,50 @@
|
|
1 |
---
|
2 |
license: mit
|
3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
license: mit
|
3 |
---
|
4 |
+
|
5 |
+
|
6 |
+
[](https://github.com/AlexeyAB/darknet/actions?query=workflow%3A%22Darknet+Continuous+Integration%22)
|
7 |
+
[](https://circleci.com/gh/AlexeyAB/darknet)
|
8 |
+
[](https://github.com/AlexeyAB/darknet/graphs/contributors)
|
9 |
+
[](https://github.com/AlexeyAB/darknet/blob/master/LICENSE)
|
10 |
+
[](https://zenodo.org/badge/latestdoi/75388965)
|
11 |
+
[](https://arxiv.org/abs/2004.10934)
|
12 |
+
[](https://arxiv.org/abs/2011.08036)
|
13 |
+
|
14 |
+
|
15 |
+
## Model
|
16 |
+
|
17 |
+
YOLOv7 surpasses all known object detectors in both speed and accuracy in the range from 5 FPS to 160 FPS and has the highest accuracy 56.8% AP among all known real-time object detectors with 30 FPS or higher on GPU V100. YOLOv7-E6 object detector (56 FPS V100, 55.9% AP) outperforms both transformer-based detector SWIN-L Cascade-Mask R-CNN (9.2 FPS A100, 53.9% AP) by 509% in speed and 2% in accuracy, and convolutional-based detector ConvNeXt-XL Cascade-Mask R-CNN (8.6 FPS A100, 55.2% AP) by 551% in speed and 0.7% AP in accuracy, as well as YOLOv7 outperforms: YOLOR, YOLOX, Scaled-YOLOv4, YOLOv5, DETR, Deformable DETR, DINO-5scale-R50, ViT-Adapter-B and many other object detectors in speed and accuracy.
|
18 |
+
|
19 |
+
### How to use:
|
20 |
+
|
21 |
+
```
|
22 |
+
# clone the repo
|
23 |
+
git clone https://huggingface.co/hashb/darknet-yolov4-object-detection
|
24 |
+
|
25 |
+
# open file darknet-yolov4-object-detection.ipynb and run in colab
|
26 |
+
```
|
27 |
+
|
28 |
+
## Citation
|
29 |
+
|
30 |
+
```
|
31 |
+
@misc{bochkovskiy2020yolov4,
|
32 |
+
title={YOLOv4: Optimal Speed and Accuracy of Object Detection},
|
33 |
+
author={Alexey Bochkovskiy and Chien-Yao Wang and Hong-Yuan Mark Liao},
|
34 |
+
year={2020},
|
35 |
+
eprint={2004.10934},
|
36 |
+
archivePrefix={arXiv},
|
37 |
+
primaryClass={cs.CV}
|
38 |
+
}
|
39 |
+
```
|
40 |
+
|
41 |
+
```
|
42 |
+
@InProceedings{Wang_2021_CVPR,
|
43 |
+
author = {Wang, Chien-Yao and Bochkovskiy, Alexey and Liao, Hong-Yuan Mark},
|
44 |
+
title = {{Scaled-YOLOv4}: Scaling Cross Stage Partial Network},
|
45 |
+
booktitle = {Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR)},
|
46 |
+
month = {June},
|
47 |
+
year = {2021},
|
48 |
+
pages = {13029-13038}
|
49 |
+
}
|
50 |
+
```
|