face_recognition icon indicating copy to clipboard operation
face_recognition copied to clipboard

Training code for dlib face recognition resnet model

Open chensteven opened this issue 7 years ago • 2 comments

Is there a training code or example available for the model dlib_face_recognition_resnet_model_v1 from https://github.com/davisking/dlib-models?

Also curious if there are any document on what the ResNet architecture look like and etc.

Thanks!

chensteven avatar Jul 12 '18 13:07 chensteven

There are links to the network architecture and training code here: https://github.com/ageitgey/face_recognition/wiki/Face-Recognition-Accuracy-Problems#question-can-i-re-train-the-face-encoding-model-to-make-it-more-accurate-for-my-images

ageitgey avatar Jul 12 '18 17:07 ageitgey

pytorch main point is TripletLoss 128-D embedding, embedding size = 128
https://github.com/tbmoon/facenet

Theory https://arxiv.org/pdf/1503.03832.pdf

fatalfeel avatar May 31 '22 10:05 fatalfeel