Entry 41: Elastic Net
The notebook where I did my code for this entry can be found on my github page in the Entry 41 notebook.
The notebook where I did my code for this entry can be found on my github page in the Entry 41 notebook.
Ridge Regression is a form of regression regularization using L2 regularization.
Least Absolute Shrinkage and Selection Operator (LASSO) Regression is a form of regression regularization using L1 regularization.
Regularization is used to help address overfitting.
The general idea of Gradient Descent is to iteratively minimize the errors (usually using the mean squared error) to arrive at better and better solutions. K...