bitmind/lfw
Viewer • Updated • 13.2k • 634 • 1
facenet-pytorch InceptionResnetV1 (VGGFace2-pretrained), fine-tuned on the
bitmind/lfw dataset. Only the
final embedding layer (last_linear, last_bn) and a classifier head were
trained; the rest of the backbone is frozen.
inceptionresnet_lfw.pt — model checkpoint (state_dict + identity name lists)database_embeddings.npy — mean L2-normalized embedding per known identitydatabase_names.json — identity names, row-aligned with database_embeddings.npymetadata.json — dataset/split metadata (full identity list, train/val/test indices)See predict_from_hub.py (companion script) for a ready-to-run example:
it downloads this checkpoint + database, aligns a new photo with MTCNN,
embeds it, and returns the nearest identity by cosine similarity.
The full aligned face tensors, per-split embeddings, and test-set predictions
used to produce the accuracy above are in the companion dataset repo:
Khalyie/lfw-face-recognition-data.