Concise, runnable notebooks for lectures.
git clone https://github.com/<your-org-or-user>/ne_cs7150.git
cd ne_cs7150You can either:
- Open a notebook directly from GitHub (recommended):
- In Colab: File → Open notebook → GitHub → paste repo URL → pick a notebook.
- Or upload a local notebook: File → Upload → choose any
LectureXX_*.ipynb.
If needed, upload requirements.txt to Colab (left sidebar → Files → Upload), then:
! pip install -r requirements.txtSome notebooks expect local data (e.g., medical_insurance.csv). If missing, upload when prompted or use:
from google.colab import files
files.upload() # upload into the working directoryOpen any notebook, run cells top-to-bottom. Colab GPU (Runtime → Change runtime type → T4/A100) is recommended for deep models.