Update README.md (#276)
Browse filesadding paper source & citation
Co-authored-by: Yuantao Feng <[email protected]>
README.md
CHANGED
|
@@ -9,6 +9,7 @@ Notes:
|
|
| 9 |
- For details on training this model, please visit https://github.com/ShiqiYu/libfacedetection.train.
|
| 10 |
- This ONNX model has fixed input shape, but OpenCV DNN infers on the exact shape of input image. See https://github.com/opencv/opencv_zoo/issues/44 for more information.
|
| 11 |
- `face_detection_yunet_2023mar_int8bq.onnx` represents the block-quantized version in int8 precision and is generated using [block_quantize.py](../../tools/quantize/block_quantize.py) with `block_size=64`.
|
|
|
|
| 12 |
|
| 13 |
Results of accuracy evaluation with [tools/eval](../../tools/eval).
|
| 14 |
|
|
@@ -70,3 +71,20 @@ All files in this directory are licensed under [MIT License](./LICENSE).
|
|
| 70 |
|
| 71 |
- https://github.com/ShiqiYu/libfacedetection
|
| 72 |
- https://github.com/ShiqiYu/libfacedetection.train
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 9 |
- For details on training this model, please visit https://github.com/ShiqiYu/libfacedetection.train.
|
| 10 |
- This ONNX model has fixed input shape, but OpenCV DNN infers on the exact shape of input image. See https://github.com/opencv/opencv_zoo/issues/44 for more information.
|
| 11 |
- `face_detection_yunet_2023mar_int8bq.onnx` represents the block-quantized version in int8 precision and is generated using [block_quantize.py](../../tools/quantize/block_quantize.py) with `block_size=64`.
|
| 12 |
+
- Paper source: [Yunet: A tiny millisecond-level face detector](https://link.springer.com/article/10.1007/s11633-023-1423-y).
|
| 13 |
|
| 14 |
Results of accuracy evaluation with [tools/eval](../../tools/eval).
|
| 15 |
|
|
|
|
| 71 |
|
| 72 |
- https://github.com/ShiqiYu/libfacedetection
|
| 73 |
- https://github.com/ShiqiYu/libfacedetection.train
|
| 74 |
+
|
| 75 |
+
## Citation
|
| 76 |
+
|
| 77 |
+
If you use `YuNet` in your work, please use the following BibTeX entries:
|
| 78 |
+
|
| 79 |
+
```
|
| 80 |
+
@article{wu2023yunet,
|
| 81 |
+
title={Yunet: A tiny millisecond-level face detector},
|
| 82 |
+
author={Wu, Wei and Peng, Hanyang and Yu, Shiqi},
|
| 83 |
+
journal={Machine Intelligence Research},
|
| 84 |
+
volume={20},
|
| 85 |
+
number={5},
|
| 86 |
+
pages={656--665},
|
| 87 |
+
year={2023},
|
| 88 |
+
publisher={Springer}
|
| 89 |
+
}
|
| 90 |
+
```
|