Trained a model on MNIST handwritten digit database using CS231N in Keras.
Also implemented a GUI app to allow users to draw their own digit to test the model.
numpy
tensorflow
keras
- Edit the config in
training_app/config.py
if necessary - Run
digitrecognition.py
0.9862 accuracy in 3 epochs
By utilizing trained model, we can predict given any images Here is an simple GUI application implemented in Django, which allows you draw a digit and run the prediction.
numpy
tensorflow
keras
pillow
django
- cd to
gui_inference_app
- make sure packages are installed correctly
python manage.py runserver
- Open
http://127.0.0.1:8000
in your browser