This repository contains the course notes, implementations of various ML models and Hackathon submission notebooks of Summer Analytics program.
A linear regression model that implements L1 norm for regularisation is called lasso regression, and one that implements (squared) L2 norm for regularisation is called ridge regression. To implement these two, note that the linear regression model stays the same,
but it is the calculation of the loss function that includes these regularisation terms.
Link for further reading: LINK