Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gypsydangerous/mnist-digit-classifier
MNIST digit classifier using my own neural network library.
https://github.com/gypsydangerous/mnist-digit-classifier
Last synced: 21 days ago
JSON representation
MNIST digit classifier using my own neural network library.
- Host: GitHub
- URL: https://github.com/gypsydangerous/mnist-digit-classifier
- Owner: GypsyDangerous
- License: apache-2.0
- Created: 2019-03-18T11:30:35.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-08-14T01:02:50.000Z (over 5 years ago)
- Last Synced: 2024-11-09T21:27:45.162Z (3 months ago)
- Language: Python
- Homepage:
- Size: 7.02 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# MNIST-digit-classifier
MNIST digit classifier using my own neural network library. version 1.0
find the library [here](https://github.com/GypsyDangerous/Python-Neural-Network).## Beta version 1.0
the network can currently classify the MNIST data with approximately 95% percent accuracy. It is tested for a variable number of times. currently the visualization only uses the command line to display the error and percent of training complete, then, in the testing loop it prints the correct answer, the guess and whether or not it is correct.## To do
- [ ] add visualizations of the digits and interactivity for user drawings.
- [ ] improve the networks initial hyperparameters for better accuracy.
- [x] save a very accurate model for later use.
- [ ] improve the [neural network library](https://github.com/GypsyDangerous/Python-Neural-Network)