Home > Mobile >  Fitting into GridSearchCV
Fitting into GridSearchCV

Time:11-24

What X,y I should fit into GridSearchCV? That I have used to train model or to test model? As I found out that using wrong one, resulted in bad accuracy score for the model ;C

CodePudding user response:

Always perform GridSearchCV on your train set, thus X_train and y_train.

  • Related