This repository contains practice code following along with Andrej Karpathy's YouTube playlist on Neural Networks.
Follow these steps to setup and run the project:
-
Setup Virtual Environment
Create a virtual environment using the venv module:
python3 -m venv env
-
Activate the Virtual Environment
Activate the virtual environment. On Windows, use:
.\env\Scripts\activate
On Unix or MacOS, use:
source env/bin/activate
-
Install Requirements
Install the required packages using the requirements.txt file:
pip install -r requirements.txt
-
Run Jupyter Notebook
Run Jupyter notebook on the required port 8999:
jupyter-lab --port 8999
Now, you should be able to open the notebook in your browser and run the code.