An open API service indexing awesome lists of open source software.

https://github.com/joshsizer/mnist-digit-classifier

Keras, Pytorch, and Numpy only machine learning implementations for the classic challenge of classifying handwritten digits.
https://github.com/joshsizer/mnist-digit-classifier

Last synced: 3 months ago
JSON representation

Keras, Pytorch, and Numpy only machine learning implementations for the classic challenge of classifying handwritten digits.

Awesome Lists containing this project

README

          

# mnist_digit_classifier

Keras, Pytorch, and custom (from scratch) implementations.

The from scratch implementation is a 3 layer
network (784, 128, 10). It is currently at 97% accuracy.

Two things I could change to improve is swapping the loss
function from mean squared error to cross-entropy,
and the output layer activation from sigmoid to softmax.