@@ -749,13 +749,13 @@ class HistGradientBoostingRegressor(RegressorMixin, BaseHistGradientBoosting):
749749 n_trees_per_iteration_ : int
750750 The number of tree that are built at each iteration. For regressors,
751751 this is always 1.
752- train_score_ : ndarray, shape (n_iter_ + 1,)
752+ train_score_ : ndarray, shape (n_iter_+ 1,)
753753 The scores at each iteration on the training data. The first entry
754754 is the score of the ensemble before the first iteration. Scores are
755755 computed according to the ``scoring`` parameter. If ``scoring`` is
756756 not 'loss', scores are computed on a subset of at most 10 000
757757 samples. Empty if no early stopping.
758- validation_score_ : ndarray, shape (n_iter_ + 1,)
758+ validation_score_ : ndarray, shape (n_iter_+ 1,)
759759 The scores at each iteration on the held-out validation data. The
760760 first entry is the score of the ensemble before the first iteration.
761761 Scores are computed according to the ``scoring`` parameter. Empty if
@@ -930,13 +930,13 @@ class HistGradientBoostingClassifier(BaseHistGradientBoosting,
930930 The number of tree that are built at each iteration. This is equal to 1
931931 for binary classification, and to ``n_classes`` for multiclass
932932
5C2C
classification.
933- train_score_ : ndarray, shape (n_iter_ + 1,)
933+ train_score_ : ndarray, shape (n_iter_+ 1,)
934934 The scores at each iteration on the training data. The first entry
935935 is the score of the ensemble before the first iteration. Scores are
936936 computed according to the ``scoring`` parameter. If ``scoring`` is
937937 not 'loss', scores are computed on a subset of at most 10 000
938938 samples. Empty if no early stopping.
939- validation_score_ : ndarray, shape (n_iter_ + 1,)
939+ validation_score_ : ndarray, shape (n_iter_+ 1,)
940940 The scores at each iteration on the held-out validation data. The
941941 first entry is the score of the ensemble before the first iteration.
942942 Scores are computed according to the ``scoring`` parameter. Empty if
0 commit comments