Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/dennybritz/nn-from-scratch

Implementing a Neural Network from Scratch
https://github.com/dennybritz/nn-from-scratch

Last synced: 30 days ago
JSON representation

Implementing a Neural Network from Scratch

Awesome Lists containing this project

README

        

[**Please read the blog post that goes with this code!**](http://www.wildml.com/2015/09/implementing-a-neural-network-from-scratch/)

### iPython notebook setup

```bash
# Create and activate new virtual environment (optional)
virtualenv venv
source venv/bin/activate
# Install requirements
pip install -r requirements.txt
# Start the notebook server
jupyter notebook
```