nn-from-scratch/README.md

14 lines
372 B
Markdown
Raw Permalink Normal View History

2015-10-06 21:33:38 +08:00
[**Please read the blog post that goes with this code!**](http://www.wildml.com/2015/09/implementing-a-neural-network-from-scratch/)
2015-09-04 10:16:19 +08:00
2015-09-02 17:31:43 +08:00
### iPython notebook setup
2015-09-02 17:29:25 +08:00
```bash
2015-10-05 15:01:55 +08:00
# Create and activate new virtual environment (optional)
2015-09-02 17:31:43 +08:00
virtualenv venv
2015-10-05 15:01:55 +08:00
source venv/bin/activate
2015-09-02 17:29:25 +08:00
# Install requirements
pip install -r requirements.txt
2015-09-02 17:31:43 +08:00
# Start the notebook server
2015-10-06 21:33:38 +08:00
jupyter notebook
2015-09-02 17:29:25 +08:00
```