Worksheet + exercise solutions to Neural Networks: Zero to Hero by Andrej Karpathy. Huge thanks to https://github.com/Russ741/karpathy-nn-z2h for the worksheets 2a, 2b and 3!
Ensure you have the following installed on your system
- Python 3.7+
- pip (Python package installer)
- Create and activate virtual env
python3 -m venv venv
. ./venv/bin/activate
- Create requirements.txt and install dependencies
pip install pip-tools
pip-compile requirements.in
pip install -r requirements.txt
- Start Jupyter notebook
jupyter notebook
This command will open the Jupyter Notebook in your default browser