From f738428b94c8143d522b341cc96228c4ec0f3b16 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Richard=20H=C3=B6chenberger?= Date: Wed, 20 Apr 2022 15:12:24 +0200 Subject: [PATCH] Correct documented default number of CV splits [skip azp][skip actions] (#10548) We're actually using 5 splits and have been for quite a while now, but this bit of the docs hasn't been updated. --- mne/decoding/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mne/decoding/base.py b/mne/decoding/base.py index c0451723e39..85331da0ac7 100644 --- a/mne/decoding/base.py +++ b/mne/decoding/base.py @@ -382,7 +382,7 @@ def cross_val_multiscore(estimator, X, y=None, groups=None, scoring=None, Determines the cross-validation splitting strategy. Possible inputs for cv are: - - None, to use the default 3-fold cross validation, + - None, to use the default 5-fold cross validation, - integer, to specify the number of folds in a ``(Stratified)KFold``, - An object to be used as a cross-validation generator. - An iterable yielding train, test splits.