Elastic net regression is a method of regularization for fitting linear and logistic models using a combination of ridge and lasso methods to penalize the models.
Edit me

What is elastic net regression?

Elastic net regression is a method of regularization for fitting linear and logistic models using a combination of ridge and lasso methods to penalize the models. Regularization complements machine learning models that may have large numbers of predictors or correlated predictors which result in more variance in the model. By penalizing the model, elastic net introduces some bias which makes the model more reliable. Ridge regression penalizes the sum of squared coefficients (L2) and lasso regression penalizes the sum of absolute values of the coefficients (L1). Elastic net combines these two types of penalties to find a good variance-bias tradeoff for the model. The optimal size of the penalty for a model can be determined via tuning parameters with cross-validation.

  • Video overview of the concepts behind elastic net regression. Part 3 of a series on regularization. Regularization Part 3: Elastic Net Regression
  • Video overview of how to implement elastic net, lasso, and ridge regression in R. Assumes knowledge of the concepts behind these three types of regression as taught in the 3-part Regularization series by the same author. Elastic net regression in R
  • Item 3 (video/code tutorial/document)

Further Learning

Video

  • Video 1
  • Video 2

Applied papers

  • Paper 1
  • Paper 2

Online tutorials

Theory papers

  • Paper 1
  • Paper 2