-
Notifications
You must be signed in to change notification settings - Fork 65
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 predict the class of a new image without sending the label #27
Comments
how to predict the class probability? when I set the output to arcface output (softmax) w.r.t number of class, I got an error when doing prediction |
Hi @almoghitelman ,
Sample code is following;
I hope it works in your situation. |
I implemented my own ArcFace. This works correctly and I believe this can solve your problem. |
Why not use [0, 0, 0......0] as laber |
i want to use the trained model to predict the class of a test image without sending the label, is it possible?
currently, the implementation required sending the Keras "predict" function a tuble of (X_test, y_test)
Is their a way to use "predict" only with the test image as input and gets the label as output?
The text was updated successfully, but these errors were encountered: