-
Notifications
You must be signed in to change notification settings - Fork 266
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
Printing predictions #96
Comments
Can you provide the full code? more than I want to see your code. |
I didn't code anything. I actually don't work with Tensorflow. I just wanted to get the predictions using this system. |
Okay, I hope this comment can help. Let me know if it doesn't I will be using some of the photo from my blog post: https://towardsdatascience.com/iclr-2015-striving-for-simplicity-the-all-convolutional-net-with-interactive-code-manual-b4976e206760 We can see that we have a simple graph of 9 layers of convolution layers right? Now inside the code, from my best guess that what your metric variable would be something like accuracy. As in the metrics. And what you want (again my best guess) would be the predictions them self so after the softmax layer operation. In that case, it is easy to just call the 'final_soft' rather than the accuracy. Now I know this is not much of a help. So let me know |
@cryptexcode let me know if this helped. |
Hi @JaeDukSeo, Thank you again. |
@cryptexcode so one problem, I am on a window system and it might take a while, since I can't install TF fold here and the only way I can think to make this work is understand the code and rewrite everything |
How can I print the fine grained predictions for the test / dev set after the training is done?
prints the accuracies. But I want the actual predictions. How can I get them?
Thanks
The text was updated successfully, but these errors were encountered: