Skip to content

Latest commit

 

History

History
10 lines (8 loc) · 343 Bytes

File metadata and controls

10 lines (8 loc) · 343 Bytes

MNIST digit classifier

A handwritten digit classifier using neural networks from scratch (MNIST)

Status

The network achieves 93.32% accuracy on testing data

  • Network(784, 128, 64, 10)
  • reLU activation in hidden layers and sigmoid in output layers
  • backpropagation for learning

Checkout model.ipynb for more detail.