All notebooks are located in the notebooks/
directory.
Model | Dataset | Filename |
---|---|---|
Linear Regression | California housing dataset | linear-regression.ipynb |
Logistic Regression | Wisconsin Diagnostic Breast Cancer | logistic-regression.ipynb |
MLP | MNIST | mlp.ipynb |
CNN | CIFAR-10 | cnn.ipynb |
CNN | CIFAR-10 | cifar-redux.ipynb |
VAE | MNIST | TODO |
BoW + TFIDF + LogReg | IMDB Sentiment | nlp-intro.ipynb |
-
Create a virtual environment:
python -m venv venv source venv/bin/activate # On Windows: venv\Scripts\activate
-
Install dependencies:
pip install -r requirements.txt
-
Launch Jupyter:
jupyter lab
-
Open any of the notebook files to explore the implementations.