InterviewSolution
| 1. |
When is Ridge regression used and when is Lasso regression (ideally)? |
|
Answer» It is suggested that in the presence of few variables with MEDIUM / LARGE sized effect, lasso regression can be used. In the presence of many variables with small/medium sized effect, ridge regression can be preferred. Conceptually, lasso regression (L1) does both variable selection and parameter shrinkage, whereas Ridge regression only does parameter shrinkage and end up INCLUDING all the coefficients in the model. In the presence of CORRELATED variables, ridge regression might be the preferred choice. ADDITIONALLY, ridge regression works best in situations where the least square estimates have higher variance. Therefore, it depends on our business goal and model objective as to what is the expectation. Accordingly, decisions can be taken. |
|