News

This project implements basic linear regression from scratch using Python, providing a clear explanation of the underlying theory and mathematical concepts. It offers a practical demonstration of how ...
In this tutorial you can learn how the gradient descent algorithm works and implement it from scratch in python. First we look at what linear regression is, then we define the loss function. We learn ...
This notebook illustrates the nature of the Stochastic Gradient Descent (SGD) and walks through all the necessary steps to create SGD from scratch in Python. Gradient Descent is an essential part of ...
Linear Regression Gradient Descent is an algorithm we use to minimize the cost function value, so as to fit our model to the data set. Gradient Descent finds the minima of cost function, ...