-
Notifications
You must be signed in to change notification settings - Fork 61
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Face Verification using Pre-Trained Model #4
Comments
I observed the output of res. and found out res is a list of lists :[[0.0, 0.0, ...... 0.0]] l1=[]
for term in res:
for item in term:
l1.append(item)
print(l1) output:
These are the non zero terms appearing in later stages of this list :
How do I interpreat these terms? is there a way to find similarity between two images using these values. |
This issue is possibly a duplicate of Issue #1. I'll share the code for finetuning the pre-trained network based on the needs that you have specified. As per the paper, the network is designed to carry out face recognition task specifically. A face verification task can be carried using DeepFace feature vector extracted from particular images. Such a feature vector can be obtained from the second last dense layer of the model. The paper also discusses a face verification technique based on use of Chi² similarity distance based SVMs. (either can be used: fine-tuning the network for new classes / chi² kernel SVM for verification) |
Hi @ajinkya933, |
@swghosh I switched to facenet, as I needed face comparision and facenet was good at doing this |
My question is concerned about face verification testing after I have a model file.
I have downloaded VGGFace2 data set, and have manually added more images to its training set. The orignal dataset is of around 9,000 people. I have added more people and now I have 11,000 people.
I want to train this model of 11,000 people and use it for face verification .
I am referring to issue #1 and took this code
Can this code be used for face verification in my case as I am adding more dataset to the training data itself? Also, how do I tell that 2 faces match, should I look for both of their res values?
The text was updated successfully, but these errors were encountered: