Recall & Review
beginner
What is Elastic Net regularization?
Elastic Net regularization is a technique that combines both L1 (Lasso) and L2 (Ridge) penalties to improve model performance and feature selection.
Click to reveal answer
intermediate
Why do we use Elastic Net instead of just Lasso or Ridge?
Elastic Net is used because it balances the strengths of Lasso (feature selection) and Ridge (handling multicollinearity), making it effective when features are correlated.
Click to reveal answer
beginner
What are the two penalty terms in Elastic Net?
Elastic Net uses a mix of L1 penalty (sum of absolute values of coefficients) and L2 penalty (sum of squared coefficients).
Click to reveal answer
intermediate
How does Elastic Net help with correlated features?
Elastic Net tends to select groups of correlated features together, unlike Lasso which might pick only one, improving model stability.
Click to reveal answer
advanced
Write the Elastic Net loss function formula.
The Elastic Net loss function is: <br>Loss = RSS + α * (λ * L1_penalty + (1 - λ) * L2_penalty), <br>where RSS is residual sum of squares, α controls overall strength, and λ balances L1 and L2 penalties.
Click to reveal answer
What does the L1 penalty in Elastic Net encourage?
✗ Incorrect
L1 penalty encourages sparsity by pushing some coefficients exactly to zero, effectively selecting features.
Which problem does Elastic Net help solve better than Lasso alone?
✗ Incorrect
Elastic Net handles correlated features better by selecting groups of them together.
In Elastic Net, what does the parameter λ control?
✗ Incorrect
λ controls how much weight is given to L1 versus L2 penalties in Elastic Net.
What happens if λ = 1 in Elastic Net?
✗ Incorrect
When λ = 1, Elastic Net uses only the L1 penalty, which is Lasso regression.
Which of these is NOT a benefit of Elastic Net?
✗ Incorrect
Elastic Net does not guarantee zero training error; it aims to reduce overfitting and improve generalization.
Explain in your own words how Elastic Net regularization works and why it is useful.
Think about how Lasso and Ridge work and how Elastic Net mixes them.
You got /3 concepts.
Describe the role of the parameters α and λ in Elastic Net regularization.
Consider how these parameters influence the penalty terms.
You got /3 concepts.