-
Notifications
You must be signed in to change notification settings - Fork 377
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
How to train not face models? #26
Comments
You need to make a separate detector for whatever it is you want to find. |
Hi Davis, |
I'm not sure if you are trying to detect the positions of things in images, or just classify the whole image as "an A type thing" vs "a B type thing". For classification of whole images any of the imagenet style methods is a textbook approach at this point. For that, http://dlib.net/dnn_imagenet_train_ex.cpp.html would be a good starting point. |
Davis, Thank you for the answer. I have three sorts of tasks:
Would be great if you could suggest on the tasks (2) and (3). Thank you. |
I would try this stuff for finding the positions of things:
http://dlib.net/ml.html#loss_mmod_
|
Hi! I've looked through Python example shape predictor and noticed that it uses separate face detector to get bounding box around face. But what if I want to train a model to predict not face but some other landmarks? How then do I use shape predictor? Where do I get neccessary bounding box? And can it be predicted by shape predictor itself?
The text was updated successfully, but these errors were encountered: