-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
Predicted Class Labels #1227
Comments
Just would like to ping on this. Is there a command that would provide predicted class labels? def model_eval(sess, x, y, predictions, X_test=None, Y_test=None, assert args.batch_size, "Batch size was not given in args dict" Define accuracy symbolicallykey = (y, predictions) Init result varaccuracy = 0.0 with sess.as_default():
return accuracy _model_eval_cache = {} |
Feature to report/record predicted class labels when using do_eval or model_eval. The overall accuracy is reported, however, characterizing model performance on specific test data would enable insight for a problem space.
The text was updated successfully, but these errors were encountered: