File tree 2 files changed +2
-3
lines changed 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change 174
174
"sklearn.metrics.pairwise.sigmoid_kernel" ,
175
175
"sklearn.model_selection._split.check_cv" ,
176
176
"sklearn.model_selection._split.train_test_split" ,
177
- "sklearn.model_selection._validation.cross_val_predict" ,
178
177
"sklearn.model_selection._validation.cross_val_score" ,
179
178
"sklearn.model_selection._validation.cross_validate" ,
180
179
"sklearn.model_selection._validation.learning_curve" ,
Original file line number Diff line number Diff line change @@ -815,7 +815,7 @@ def cross_val_predict(
815
815
pre_dispatch = "2*n_jobs" ,
816
816
method = "predict" ,
817
817
):
818
- """Generate cross-validated estimates for each input data point
818
+ """Generate cross-validated estimates for each input data point.
819
819
820
820
The data is split according to the cv parameter. Each sample belongs
821
821
to exactly one test set, and its prediction is computed with an
@@ -853,7 +853,7 @@ def cross_val_predict(
853
853
- None, to use the default 5-fold cross validation,
854
854
- int, to specify the number of folds in a `(Stratified)KFold`,
855
855
- :term:`CV splitter`,
856
- - An iterable yielding (train, test) splits as arrays of indices.
856
+ - An iterable that generates (train, test) splits as arrays of indices.
857
857
858
858
For int/None inputs, if the estimator is a classifier and ``y`` is
859
859
either binary or multiclass, :class:`StratifiedKFold` is used. In all
You can’t perform that action at this time.
0 commit comments