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