Skip to content

Commit

Permalink
DOC Changed Cross Validate Return Section Doc (#14924)
Browse files Browse the repository at this point in the history
  • Loading branch information
shubhambmehta authored and jnothman committed Sep 28, 2019
1 parent e6e00a3 commit 80a4cf0
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions sklearn/model_selection/_validation.py
Expand Up @@ -151,8 +151,14 @@ def cross_validate(estimator, X, y=None, groups=None, scoring=None, cv=None,
``test_score``
The score array for test scores on each cv split.
Suffix ``_score`` in ``test_score`` changes to a specific
metric like ``test_r2`` or ``test_auc`` if there are
multiple scoring metrics in the scoring parameter.
``train_score``
The score array for train scores on each cv split.
Suffix ``_score`` in ``train_score`` changes to a specific
metric like ``train_r2`` or ``train_auc`` if there are
multiple scoring metrics in the scoring parameter.
This is available only if ``return_train_score`` parameter
is ``True``.
``fit_time``
Expand Down

0 comments on commit 80a4cf0

Please sign in to comment.