RidgeCV() also searches on a set of hyperparameters, and given a similar kernel in GridSearchCV() along with similar parameters would there be any difference in the results of the two?
CodePudding user response:
RidgeCV implements cross validation for ridge regression specifically, while with GridSearchCV you can optimize parameters for any estimator, including ridge regression.