Posts
Arjun Mota's Blog
Cancel

Ridge regression algorithm explanation and formulas used in development. Background Brief Ridge regression is also known as L2 regularization and Tikhonov regularization. It is a regularized version of linear regressio...

Polynomial regression algorithm explanation, usecases, diagrams and formulas used in development. Background Brief In the Linear Regression, we try to find a coefficient(s) to make a straight line that covers all of our data point such that we...

Machine learning model evaluation metric R2 (r-squared) explanation, formula and usecases of it. Brief The R-Squared evaluation metric is also known as the coefficient of determination. It tells us how good our regression line fit to our model...

Machine learning model evaluation metric Adjusted R2 (adjusted r-squared) explanation, formula and usecases of it. Brief The Adjusted R-Squared is an evaluation metric that eliminates the limitations of the R-Squared. It tells us how good our regression line fi...

Machine learning model evaluation metric RMSE (root mean squared error) explanation, formula and usecases of it. Brief Root mean squared error is an evaluation metric used in measuring the accuracy of a model. It calculates the sum of squared differences and ...

Machine learning model evaluation metric MSE (mean squared error) explanation, formula and usecases of it. Brief Mean squared error is one of the popular evaluation metrics used in measuring the accuracy of a model. It calculates the sum of squared diff...

Machine learning model evaluation metric MAE (mean absolute error) explanation, formula and usecases of it. Brief Mean absolute error is one of the evaluation metrics used in measuring the accuracy of a model. As its name says it calculates an error with...

Linear regression algorithm explanation, usecases, diagrams and formulas used in development. Background Brief Linear regression is an algorithm where machine learning actually starts. It is a very basic supervised learning algorithm used ...