Elastic Net Flashcards

1
Q

Elastic Net

A

Elastic Net is a regularization method that combines the L1 and L2 regularization methods to both maintain the feature selection aspect of L1 regularization (Lasso) and the ridge of L2 regularization. In summary, Elastic Net regularization is a powerful technique that combines the advantages of both L1 and L2 regularization. It is particularly useful when dealing with high dimensional datasets with many correlated features. However, it requires careful tuning of two hyperparameters, which can add to the complexity of model training.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q
  1. Definition
A

Elastic Net regularization is a type of regularization that combines both L1 and L2 penalties to form a single penalty term added to the loss function.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q
  1. Mathematical Formulation
A

The penalty added to the loss function in Elastic Net is a weighted combination of an L1 penalty and an L2 penalty. If L(f) is the unregularized loss, the regularized loss L’(f) is given by L’(f) = L(f) + λ [(1 - α) / 2 * ||w||^2_2 + α * ||w||_1], where w are the model parameters, λ is the overall regularization strength, and α is the mixing parameter between L1 and L2.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q
  1. Advantages
A

Elastic Net is a balanced approach that incorporates the strengths of both L1 and L2 regularization. It encourages a sparse model like L1 regularization, but still maintains the regularization properties of L2 to distribute the weights for correlated variables. This can make it more effective when dealing with datasets with multiple features that are correlated with one another.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q
  1. Limitations
A

Elastic Net has two hyperparameters to tune, the L1/L2 mix and the overall strength, which can make the training and validation process more complex. Additionally, it might be computationally more expensive than L1 or L2 regularization.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q
  1. Usage
A

Elastic Net is used in linear regression (Elastic Net regression), logistic regression, and other models that benefit from both feature selection and handling of multicollinearity.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q
  1. Parameter Tuning
A

The strength and balance of the Elastic Net regularization are controlled by two hyperparameters, usually denoted by lambda (λ) or alpha. These hyperparameters need to be carefully tuned, often through a process like cross-validation, to find the right level and balance of regularization.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly