Linear Regression

Linear regression using numpy

Fri, 08 Jun 2018 by Pritish Jadhav, Mrunal Jadhav / Machine Learning

Linear Regression is one the most basic algorithm on ML. With the likes of sklearn providing an off the shelf implementation of Linear Regression, it is very difficult to gain an insight on what really happens under the hood. This tutorial is aimed at implementing Linear Regression from scratch in python using Numpy.

Read more