ageitgey / face_recognition

The world's simplest facial recognition api for Python and the command line
MIT License
53.21k stars 13.48k forks source link

Which paper is this algorithm from? Why there is no reference? #940

Open rayli-anti opened 5 years ago

rayli-anti commented 5 years ago

Description

Describe what you were trying to get done. Tell us what happened, what went wrong, and what you expected to happen. IMPORTANT: If your issue is related to a specific picture, include it so others can reproduce the issue.

What I Did

Paste the command(s) you ran and the output.
If there was a crash, please include the traceback here.
ageitgey commented 5 years ago

See http://blog.dlib.net/2017/02/high-quality-face-recognition-with-deep.html

It's a custom implementation, not an exact implementation of any paper. It's a modified version of the ResNet-34 from 'Deep Residual Learning for Image Recogniton' by He, et al, with a deep metric learning loss which is similar to a lot of different face recognition papers.