-
Notifications
You must be signed in to change notification settings - Fork 62
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 Landmarks usage #4
Comments
Yes I append the landmarks with the hog features and the flatten image, then I feed everything to the SVM. Since it's supervised learning, the SVM expects also the labels so that it learn to classify each data to the correct label. But the labels are not appended with the data |
But from you model Picture it seems you are feeding your model only with image, and sending landmarks as a different layer, Can you explain a little bit more about feeding landmarks? |
In this svm version I concatenate the two, but in the other repository using cnn indeed I feed the images alones in a 2d convolutional layer, and I feed the landmarks (pixels positions) in another layer. In some cases I don't feed the landmarks alone, but I append the hog features, thoses were just tests I was trying to see how feeding an image alone, and feeding additional data which are not raw pixels can affect the training |
Got it. |
What was the model you used? |
VGG |
I have a hypothesis but not sure: may be the landmarks are useful only on small architecture, like the 5-layers model I used, but in the case of bigger models having dozen of layers the parameters space is huge and the network can optimize the solution better, without the need of extra features such as landmarks of HOG |
I want to know about how you ae feeding your network with landmarks? are you appending landmarks on image or just using as a label?
The text was updated successfully, but these errors were encountered: