Models — Regression
Ridge Regression component
Train a linear regression model with L2 regularization that shrinks coefficients toward zero to reduce overfitting and handle multicollinearity.
Ridge Regression adds a penalty proportional to the square of the coefficient magnitudes (L2 regularization). This shrinks all coefficients toward zero, which helps when many features are correlated or the dataset is small.