-
Notifications
You must be signed in to change notification settings - Fork 45
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 get training accuracy? #23
Comments
On further looking at code in |
You'll have to download and parse the MNIST dataset yourself. There is some helper script provided in the old SecureNN codebase, you can use that to transform the raw MNIST into a "good format" (essentially the train_data, test_data files). You can then load pre-trained models provided in the |
Thanks. I will try this and post here in case I face any issue |
This might be related: #29 |
Hi all,
I was trying to get the accuracy as done in one of the previous issues #8 but I realized the NeuralNetwork::getAccuracy() function has been commented out and as a result
temp_groundTruth
is not updated. I am always getting 100% accuracy since bothcounter[0]
andcounter[1]
have same values. Can anyone please help to fix this issue?Thanks
The text was updated successfully, but these errors were encountered: