Skip to content

Latest commit

 

History

History
13 lines (8 loc) · 1.65 KB

README.md

File metadata and controls

13 lines (8 loc) · 1.65 KB

ml_scratch_pad

Binder

Here I just play around with NumPy to implement ML stuff from scratch for my own understanding.

Notebooks

  1. Open In Colab nn_from_scratch_with_np: In this notebook we develop a neural network from scratch using only NumPy. We develop the code based on the excellent tutorial by Victor Zhou.

  2. Open In Colab nn_from_scratch_with_np2: This notebook is only a minimal extension of the first notebook. The only thing we add here is a second output neuron. The activation function, the data and the rest of the architecture remain the same.

  3. Open In Colab linear_regression: Implementation of linear regression on the diabetes dataset and on a simple dummy dataset.

  4. Open In Colab logistic_regression: Implementation of logistic regression on a simple dummy dataset.