until recently I was using GridSearchCV to get the std scores on the crossvalidation by doing this pointed in here
So basically doing this
grid_search.cv_results_['std_test_score'][grid_search.best_index_]
But now I get a key error telling me that 'std_test_score' is not a key.
This is how I call the GridSearchCV function
splitter = StratifiedKFold(n_splits=5, shuffle=True, random_state=11)
scoring_functions = {'mcc': make_scorer(matthews_corrcoef), 'accuracy': make_scorer(accuracy_score),
'balanced_accuracy': make_scorer(balanced_accuracy_score)}
grid_search = GridSearchCV(pipeline, param_grid=grid, scoring=scoring_functions, n_jobs=-1, cv=splitter, refit='mcc')