Ridge Regressor
A polynomial regressor which includes an additional regularisation term
which consists of the sum of the squared values for the trainable parameters
It uses the squared values of the weights:
Ridge Regressor adds a penalty term proportional to the square of weights.
This tends to shrink weights toward zero (rarely making them exactly zero).
They are represented by the term:
The regularisation term encourages the model to assign low values to the model parameters, leading to less overfitting.
Also called L2 Regularisation, based on the concept of Lp norms.