Logistic Regression Part I — Transformation of Linear to Logistic

Ever thought about doing magic or predict future? Here is the guide! lol! In this article lets go programming with sklearn package to explore Linear Regression and learn how to do prediction with Linear Regression. We have seen enough theories…
R Squared is one of the metrics by which we can find the accuracy of a model that we create. R squared metrics works only if the regression model is linear. SSE — Sum of Squares of Residuals (Errors) SSR is the sum…
Gradient descent is an optimization algorithm used to minimize a cost function (i.e. Error) parameterized by a model. We know that Gradient means the slope of a surface or a line. This algorithm involves calculations with slope. To understand about Gradient Descent, we…
Linear Regression is a linear approach to model the relationship between a two or more variables by fitting a straight line i.e. linear, to predict the output for the given input data. To perform Linear Regression, Data should accomplish the below…