Skip to content

Latest commit

 

History

History
25 lines (23 loc) · 1.49 KB

File metadata and controls

25 lines (23 loc) · 1.49 KB

Ridge Regression

The first version of regression was invented more than a hundred years ago.
While the core concept of the early version remains almost the same, the old method was susceptible to overfitting and multicollinearity as more predictors are added onto an equation.
Therefore, some other methods were invented to put a check on a variance from growing too much and to find the optimal point which is often times called "sweet spot" where total error is the minimum.
The Ridge Regression and Lasso Regression) are well known methods to the job called Regularization) or Regression Shrinkage Method). (brouder explanation)

Code

python3 sample.py

Resources