CoolFace
Modelpublic

Library-Mutsumi/insightface

sourceHugging Faceotherupdated 4mo agoView on Hugging Face
0likes
Model Card

ONNX models from insightface project.

How To Use

shell
pip install dghs-realutils>=0.1.0
python
from realutils.face.insightface import isf_face_batch_similarity, isf_analysis_faces, isf_faces_visualize

image_path = "/your/image/file"
# get the analysis all the faces
faces = isf_analysis_faces(image_path)
print(faces)

# compare them
print(isf_face_batch_similarity([face.embedding for face in faces]))

# visualize it
isf_faces_visualize(image_path, faces).show()

Available Models

We evaluated all these models with some evaluation datasets on face recognition.

  • —CFPW (500 ids/7K images/7K pairs)[1]
  • —LFW (5749 ids/13233 images/6K pairs)[2]
  • —CALFW (5749 ids/13233 images/6K pairs)[3]
  • —CPLFW (5749 ids/13233 images/6K pairs)[4]

Below are the complete results and recommended thresholds.

  • —Det: Success rate of face detection and landmark localization.
  • —Rec-F1: Maximum F1 score achieved in face recognition.
  • —Rec-Thresh: Optimal threshold determined by the maximum F1 score.
ModelEval ALL (Det/Rec-F1/Rec-Thresh)Eval CALFW (Det/Rec-F1/Rec-Thresh)Eval CFPW (Det/Rec-F1/Rec-Thresh)Eval CPLFW (Det/Rec-F1/Rec-Thresh)Eval LFW (Det/Rec-F1/Rec-Thresh)
buffalo_l99.88% / 98.34% / 0.2203100.00% / 95.75% / 0.227399.99% / 99.66% / 0.186699.48% / 96.41% / 0.2207100.00% / 99.85% / 0.2469
buffalo_s99.49% / 96.87% / 0.199499.99% / 94.45% / 0.212499.65% / 98.64% / 0.184598.04% / 92.61% / 0.2019100.00% / 99.68% / 0.2314

[1] Sengupta Soumyadip, Chen Jun-Cheng, Castillo Carlos, Patel Vishal M, Chellappa Rama, Jacobs David W, Frontal to profile face verification in the wild, WACV, 2016.

[2] Gary B. Huang, Manu Ramesh, Tamara Berg, and Erik Learned-Miller. Labeled Faces in the Wild: A Database for Studying Face Recognition in Unconstrained Environments, 2007.

[3] Zheng Tianyue, Deng Weihong, Hu Jiani, Cross-age lfw: A database for studying cross-age face recognition in unconstrained environments, arXiv:1708.08197, 2017.

[4] Zheng, Tianyue, and Weihong Deng. Cross-Pose LFW: A Database for Studying Cross-Pose Face Recognition in Unconstrained Environments, 2018.