8000 MAINT Typos in HistGradientBoosting documentation by ChVeen · Pull Request #26057 · scikit-learn/scikit-learn · GitHub
[go: up one dir, main page]

Skip to content

MAINT Typos in HistGradientBoosting documentation #26057

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions sklearn/ensemble/_hist_gradient_boosting/gradient_boosting.py
Original file line number Diff line number Diff line change
Expand Up @@ -1297,7 +1297,7 @@ class HistGradientBoostingRegressor(RegressorMixin, BaseHistGradientBoosting):
.. versionchanged:: 1.2
Accept dict of constraints with feature names as keys.

interaction_cst : {"pairwise", "no_interaction"} or sequence of lists/tuples/sets \
interaction_cst : {"pairwise", "no_interactions"} or sequence of lists/tuples/sets \
of int, default=None
Specify interaction constraints, the sets of features which can
interact with each other in child node splits.
Expand Down Expand Up @@ -1655,7 +1655,7 @@ class HistGradientBoostingClassifier(ClassifierMixin, BaseHistGradientBoosting):
.. versionchanged:: 1.2
Accept dict of constraints with feature names as keys.

interaction_cst : {"pairwise", "no_interaction"} or sequence of lists/tuples/sets \
interaction_cst : {"pairwise", "no_interactions"} or sequence of lists/tuples/sets \
of int, default=None
Specify interaction constraints, the sets of features which can
interact with each other in child node splits.
Expand Down
0