Skip to content

Latest commit

 

History

History
30 lines (26 loc) · 1.65 KB

File metadata and controls

30 lines (26 loc) · 1.65 KB

Elastic Net Regression

Regression is a modeling task that involves predicting a numeric value given an input.

Linear regression is the standard algorithm for regression that assumes a linear relationship between inputs and the target variable.
An extension to linear regression involves adding penalties to the loss function during training that encourage simpler models that have smaller coefficient values.
These extensions are referred to as regularized linear regression or penalized linear regression.
Elastic Net Regression is a popular type of regularized linear regression that combines Ridge Regression and Lasso Regression.

To understand Elastic Net Regression, it would be nice to learn first:

Code

python3 sample.py

Resources