Two neural networks built using NumPy. Enjoy!
The mnist_train.csv file can be downloaded from https://www.pjreddie.com/media/files/mnist_train.csv
Feed forward neural network. Applying predefined convolution filter to learn different features.
python3 FNN.py
Convolutional neural network. Learning the convolution filters by trial and error.
python3 CCN.py
Does all the convolution operations. It also includes code for visualizing different convolution filters applied to photos.