facenet
facenet copied to clipboard
FaceNet for face recognition using pytorch
dists = l2_dist.forward(embed_anchor, embed_pos) distances.append(dists.data.cpu().numpy()) labels.append(np.ones(dists.size(0))) dists = l2_dist.forward(embed_anchor, embed_neg) distances.append(dists.data.cpu().numpy()) labels.append(np.zeros(dists.size(0))) can you exlpain the code ? what's for?
please i need to understand the meaning of evaluation metrics calculate_roc calculate accuracy
I wonder why the accuracy of the trained model does not reach 99% described in the paper. Is it because you chose offline instead of online when choosing hard triplet?
# DATA PARALLEL When I trained the ***FaceNet model*** using your repository, the default batch size of 128 was too much memory for just one GPU. Instead, I added the...
Hello, I am looking to train this model on my own dataset for which I require a pretrained model on VGGFace2. Can you please make available the pretrained model on...