File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -1124,8 +1124,9 @@ class GradientBoostingClassifier(ClassifierMixin, BaseGradientBoosting):
1124
1124
classification is a special case where only a single regression tree is
1125
1125
induced.
1126
1126
1127
- :class:`sklearn.ensemble.HistGradientBoostingClassifier` is a much faster
1128
- variant of this algorithm for intermediate datasets (`n_samples >= 10_000`).
1127
+ :class:`~sklearn.ensemble.HistGradientBoostingClassifier` is a much faster variant
1128
+ of this algorithm for intermediate and large datasets (`n_samples >= 10_000`) and
1129
+ supports monotonic constraints.
1129
1130
1130
1131
Read more in the :ref:`User Guide <gradient_boosting>`.
1131
1132
@@ -1727,8 +1728,9 @@ class GradientBoostingRegressor(RegressorMixin, BaseGradientBoosting):
1727
1728
each stage a regression tree is fit on the negative gradient of the given
1728
1729
loss function.
1729
1730
1730
- :class:`sklearn.ensemble.HistGradientBoostingRegressor` is a much faster
1731
- variant of this algorithm for intermediate datasets (`n_samples >= 10_000`).
1731
+ :class:`~sklearn.ensemble.HistGradientBoostingRegressor` is a much faster variant
1732
+ of this algorithm for intermediate and large datasets (`n_samples >= 10_000`) and
1733
+ supports monotonic constraints.
1732
1734
1733
1735
Read more in the :ref:`User Guide <gradient_boosting>`.
1734
1736
You can’t perform that action at this time.
0 commit comments