-
-
Notifications
You must be signed in to change notification settings - Fork 25.8k
Gradient boosting models ignore min_impurity_split parameter #8006
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
Comments
Thanks for the report. Do you want to submit a fix with regression test? |
sebp
pushed a commit
to sebp/scikit-learn
that referenced
this issue
Dec 10, 2016
self.min_impurity_split should be passed to DecisionTreeRegressor in BaseGradientBoosting._fit_stage. Fixes scikit-learn#8006
sebp
pushed a commit
to sebp/scikit-learn
that referenced
this issue
Dec 11, 2016
self.min_impurity_split should be passed to DecisionTreeRegressor in BaseGradientBoosting._fit_stage. Fixes scikit-learn#8006
sebp
pushed a commit
to sebp/scikit-learn
that referenced
this issue
Dec 13, 2016
self.min_impurity_split should be passed to DecisionTreeRegressor in BaseGradientBoosting._fit_stage. Fixes scikit-learn#8006
sebp
pushed a commit
to sebp/scikit-learn
that referenced
this issue
Dec 13, 2016
self.min_impurity_split should be passed to DecisionTreeRegressor in BaseGradientBoosting._fit_stage. Fixes scikit-learn#8006
jnothman
pushed a commit
that referenced
this issue
Dec 13, 2016
sergeyf
pushed a commit
to sergeyf/scikit-learn
that referenced
this issue
Feb 28, 2017
Closed
Sundrique
pushed a commit
to Sundrique/scikit-learn
that referenced
this issue
Jun 14, 2017
NelleV
pushed a commit
to NelleV/scikit-learn
that referenced
this issue
Aug 11, 2017
paulha
pushed a commit
to paulha/scikit-learn
that referenced
this issue
Aug 19, 2017
maskani-moh
pushed a commit
to maskani-moh/scikit-learn
that referenced
this issue
Nov 15, 2017
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Description
Gradient boosting models ignore
min_impurity_split
parameter introduced in commit 376aa50.Expected Results
self.min_impurity_split
should be passed toDecisionTreeRegressor
in BaseGradientBoosting._fit_stage.Actual Results
self.min_impurity_split
is never read inBaseGradientBoosting
or any of its sub-classes.Versions
[GCC 4.4.7 20120313 (Red Hat 4.4.7-1)]
The text was updated successfully, but these errors were encountered: