Home > Blockchain >  Difference between RidgeCV() and GridSearchCV()
Difference between RidgeCV() and GridSearchCV()

Time:02-28

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.

  • Related