Souloist / nn-zero-to-hero

Exercise solutions to Neural Networks: Zero to Hero by Andrej Karpathy

Repository from Github https://github.comSouloist/nn-zero-to-heroRepository from Github https://github.comSouloist/nn-zero-to-hero

Neural Networks: Zero to Hero Worksheet Solutions

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!

Installation

Ensure you have the following installed on your system

  • Python 3.7+
  • pip (Python package installer)
  1. Create and activate virtual env
python3 -m venv venv
. ./venv/bin/activate
  1. Create requirements.txt and install dependencies
pip install pip-tools
pip-compile requirements.in
pip install -r requirements.txt
  1. Start Jupyter notebook
jupyter notebook

This command will open the Jupyter Notebook in your default browser

About

Exercise solutions to Neural Networks: Zero to Hero by Andrej Karpathy


Languages

Language:Jupyter Notebook 98.1%Language:Python 1.9%