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

https://github.com/mostafaelaraby/numpy-mlp-mnist

an mlp model made using numpy for learning purposes on MNIST dataset
https://github.com/mostafaelaraby/numpy-mlp-mnist

convnet mlp mlp-classifier mlp-numpy-tutorial mlp-tutorial mnist-classification numpy-mlp

Last synced: about 2 months ago
JSON representation

an mlp model made using numpy for learning purposes on MNIST dataset

Awesome Lists containing this project

README

          

# Numpy-MLP-MNIST

## Mnist MLP using Numpy
The aim of this notebook is to write forward and backward propagation using numpy to learn more about the gradients computation.
The notebook is well documented
## Mnist Convnet Pytorch
using the same Mnist dataset we create a simple convnet showing the difference between the MLP model performance and the convnet which is better
## TODO
- try to make a simple convnet using numpy
- adding momentum in the update step
- trying to implement other optimizers using numpy