Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/dennybritz/nn-from-scratch
- Owner: dennybritz
- License: mit
- Created: 2015-09-02T09:30:43.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2023-08-14T23:34:36.000Z (about 1 year ago)
- Last Synced: 2024-10-01T17:21:59.427Z (about 1 month ago)
- Language: Jupyter Notebook
- Size: 499 KB
- Stars: 1,929
- Watchers: 89
- Forks: 988
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```