From 5644dd73d2a38f3cadb9c1aeb2ba54f5e86d385b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Est=C3=A8ve?= Date: Thu, 1 Dec 2022 17:14:26 +0100 Subject: [PATCH] DOC Fix typo in doc --- sklearn/model_selection/_validation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sklearn/model_selection/_validation.py b/sklearn/model_selection/_validation.py index c8d7252713e35..a9e133fdd1551 100644 --- a/sklearn/model_selection/_validation.py +++ b/sklearn/model_selection/_validation.py @@ -112,7 +112,7 @@ def cross_validate( For int/None inputs, if the estimator is a classifier and ``y`` is either binary or multiclass, :class:`StratifiedKFold` is used. In all - other cases, :class:`.Fold` is used. These splitters are instantiated + other cases, :class:`KFold` is used. These splitters are instantiated with `shuffle=False` so the splits will be the same across calls. Refer :ref:`User Guide ` for the various