Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/uiur/nn

neural networks from scratch
https://github.com/uiur/nn

Last synced: about 1 month ago
JSON representation

neural networks from scratch

Awesome Lists containing this project

README

        

# neural networks from scratch
some implementations of neural networks using numpy.

The motivation is to understand neural networks. It's not practical, but lots of fun.

The code has implementations of multilayer perceptron, convolutional neural network and other techniques.

To run a mnist example:
```sh
PYTHONPATH=. python examples/mnist.py
PYTHONPATH=. python examples/mnist_cnn.py # slow
```

## References
[Neural Networks and Deep Learning](http://neuralnetworksanddeeplearning.com/)

[Deep Learning](http://www.deeplearningbook.org/)

[CS231n: Convolutional Neural Networks for Visual Recognition](http://cs231n.github.io/)

[Keras](http://keras.io/)