If the regularization parameter alpha is set to 0 in ridge regression, it means that there is no regularization being applied. In other words, the model will be the same as a linear regression model without any regularization.
main.py163 chars8 lines
In the code above, Ridge(alpha=0)
creates a Ridge regression model with alpha set to 0, effectively turning off the regularization.
gistlibby LogSnag