ljchang commited on
Commit
0417726
·
verified ·
1 Parent(s): b275f0e

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +11 -23
README.md CHANGED
@@ -9,38 +9,26 @@ language:
9
 
10
  # Retinaface
11
 
12
- ## Model Details
13
 
14
- ### Model Description
15
- Retinaface is a state-of-the-art face detection model built using PyTorch. It accurately detects faces in images and returns bounding boxes around detected faces. The model is designed to work efficiently on a wide range of images, including those with varying lighting conditions, occlusions, and face orientations.
 
16
 
17
  - **License:** MIT
18
  - **License Link:** [MIT License](https://github.com/biubug6/Pytorch_Retinaface/blob/master/LICENSE.MIT)
19
 
20
- ### Model Sources
21
- - **Repository:** [Pytorch_Retinaface](https://github.com/biubug6/Pytorch_Retinaface)
 
 
 
 
22
  - **Paper:** [RetinaFace: Single-stage Dense Face Localisation in the Wild](https://arxiv.org/abs/1905.00641)
23
 
24
  ## Model Architecture
25
- The Retinaface model utilizes a deep convolutional neural network architecture with multiple layers. It uses `mobilenet0.25` as the backbone network (only 1.7M parameters) but can also use `resnet50` as the backbone to achieve better results. It includes additional layers for feature extraction and bounding box prediction.
26
-
27
- ## Intended Use
28
- This model is intended for use in applications requiring face detection, such as:
29
- - Security systems
30
- - Augmented reality
31
- - Image processing pipelines
32
- - Photo management applications
33
 
34
  ## Evaluation Results
35
- The model was evaluated on the WIDER FACE dataset
36
-
37
- ## Limitations and Biases
38
- While the Retinaface model performs well in many conditions, it may have limitations, including:
39
-
40
- Reduced accuracy in detecting faces with heavy occlusions
41
- Potential biases towards the demographic distribution of the training dataset
42
- Ethical Considerations
43
- When using face detection technologies, it is essential to consider the ethical implications, such as privacy concerns and potential biases. Ensure that the use of this model complies with relevant regulations and guidelines.
44
 
45
  ## Citation
46
  If you use the Retinaface model in your research or application, please cite the following paper:
@@ -58,4 +46,4 @@ If you use the Retinaface model in your research or application, please cite the
58
  ```
59
 
60
  ## Acknowledgements
61
- We thank the contributors and the open-source community for their valuable support in developing this model. Special thanks to the authors of the original Retinaface paper and the WIDER FACE dataset.
 
9
 
10
  # Retinaface
11
 
 
12
 
13
+ ## Model Description
14
+ This is a PyTorch implementation of [RetinaFace: Single-stage Dense Face Localisation in the Wild](RetinaFace: Single-stage Dense Face Localisation in the Wild) based on [biubug6's implementation](https://github.com/biubug6/Pytorch_Retinaface). The Retinaface model utilizes a deep convolutional neural network architecture with multiple layers. It uses `mobilenet0.25` as the backbone network (only 1.7M parameters) but can also use `resnet50` as the backbone to achieve better results, but with additional computational overhead.
15
+ This model returns bounding box locations of each detected face, confidence scores in the face detection, as well as 10 facial landmark keystones.
16
 
17
  - **License:** MIT
18
  - **License Link:** [MIT License](https://github.com/biubug6/Pytorch_Retinaface/blob/master/LICENSE.MIT)
19
 
20
+ ## Model Details:
21
+ - **Model Type**: Convolutional Neural Network (Mobilenet backbone)
22
+ - **Framework**: pytorch
23
+ -
24
+ ## Model Sources
25
+ - **Repository:** [Py-Feat](https://github.com/cosanlab/py-feat/tree/main/feat/face_detectors/Retinaface)
26
  - **Paper:** [RetinaFace: Single-stage Dense Face Localisation in the Wild](https://arxiv.org/abs/1905.00641)
27
 
28
  ## Model Architecture
 
 
 
 
 
 
 
 
29
 
30
  ## Evaluation Results
31
+ The model was evaluated on the WIDER FACE dataset see the benchmark results in [biubug6 repository](https://github.com/biubug6/Pytorch_Retinaface)
 
 
 
 
 
 
 
 
32
 
33
  ## Citation
34
  If you use the Retinaface model in your research or application, please cite the following paper:
 
46
  ```
47
 
48
  ## Acknowledgements
49
+ We thank the contributors and the open-source community for their valuable support in developing this model. Special thanks to the authors of the original Retinaface paper, the WIDER FACE dataset, and biubug6 for sharing weights and code.