Tag #MachineLearning
Underfitted — Generalized — Overfitted
Overfitting — Bias — Variance — Regularization
Linear Regression — Part IV — Chance of Admission Prediction
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…
Linear Regression — Part III — R Squared
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…
Linear Regression — Part II — Gradient Descent
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 — Part I
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…