You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
GridSearchCV fits all the classifiers on the first split, then all the classifers on the second split, etc.
This is suboptimal for caching in the pipeline, since most intermediate transformers will be fitted with same input when the grid search runs with several jobs (since no caching has been done yet).
The order should be: fit the first classifier on all splits, then second classifier on all splits, etc