@@ -98,7 +98,7 @@ def cross_val_score(estimator, X, y=None, labels=None, scoring=None, cv=None,
9898 - An iterable yielding train, test splits.
9999
100100 For integer/None inputs, if the estimator is a classifier and ``y`` is
101- either binary or multiclass, :class:`StratifiedKFold` used. In all
101+ either binary or multiclass, :class:`StratifiedKFold` is used. In all
102102 other cases, :class:`KFold` is used.
103103
104104 Refer :ref:`User Guide <cross_validation>` for the various
@@ -346,7 +346,7 @@ def cross_val_predict(estimator, X, y=None, labels=None, cv=None, n_jobs=1,
346346 - An iterable yielding train, test splits.
347347
348348 For integer/None inputs, if the estimator is a classifier and ``y`` is
349- either binary or multiclass, :class:`StratifiedKFold` used. In all
349+ either binary or multiclass, :class:`StratifiedKFold` is used. In all
350350 other cases, :class:`KFold` is used.
351351
352352 Refer :ref:`User Guide <cross_validation>` for the various
@@ -562,7 +562,7 @@ def permutation_test_score(estimator, X, y, labels=None, cv=None,
562562 - An iterable yielding train, test splits.
563563
564564 For integer/None inputs, if the estimator is a classifier and ``y`` is
565- either binary or multiclass, :class:`StratifiedKFold` used. In all
565+ either binary or multiclass, :class:`StratifiedKFold` is used. In all
566566 other cases, :class:`KFold` is used.
567567
568568 Refer :ref:`User Guide <cross_validation>` for the various
@@ -702,7 +702,7 @@ def learning_curve(estimator, X, y, labels=None,
702702 - An iterable yielding train, test splits.
703703
704704 For integer/None inputs, if the estimator is a classifier and ``y`` is
705- either binary or multiclass, :class:`StratifiedKFold` used. In all
705+ either binary or multiclass, :class:`StratifiedKFold` is used. In all
706706 other cases, :class:`KFold` is used.
707707
708708 Refer :ref:`User Guide <cross_validation>` for the various
@@ -915,7 +915,7 @@ def validation_curve(estimator, X, y, param_name, param_range, labels=None,
915915 - An iterable yielding train, test splits.
916916
917917 For integer/None inputs, if the estimator is a classifier and ``y`` is
918- either binary or multiclass, :class:`StratifiedKFold` used. In all
918+ either binary or multiclass, :class:`StratifiedKFold` is used. In all
919919 other cases, :class:`KFold` is used.
920920
921921 Refer :ref:`User Guide <cross_validation>` for the various
0 commit comments