shuffle the data before gridsearchcv

Solutions on MaxInterview for shuffle the data before gridsearchcv by the best coders in the world

showing results for - "shuffle the data before gridsearchcv"
Ewan
06 Apr 2020
1model = XGBClassifier()
2param_grid = {"n_estimators": [100]}
3cv = StratifiedKFold(n_splits=5, shuffle=True)
4gs = GridSearchCV(model, param_grid=param_grid)
5
similar questions
queries leading to this page
shuffle the data before gridsearchcv