-
-
Notifications
You must be signed in to change notification settings - Fork 25.9k
Add baseline estimator to HGBT #27109
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
This comment was marked as off-topic.
This comment was marked as off-topic.
Hello @lorentzenchr ,Thanks for reporting the issue. I am willing to add the |
Could you explain a bit more what you mean with a baseline model? Is it the model that gets boosted (by default a decision tree)? |
@betatim Same as |
@GyanPrakashkushwaha This is marked as "Needs Decision" in the labels. |
@lorentzenchr I am trying to add the |
Describe the workflow you want to enable
I would like to specify a baseline estimator like in
GradientBoostingRegressor(init=MyCoolBaselineEstimator_Maybe_a_linear_model)
.Describe your proposed solution
Add a parameter
baseline
(or if has to be the same, theninit
) toHistGradientBoostingRegressor
andHistGradientBoostingClassifier
.Describe alternatives you've considered, if relevant
The
StackingClassifier
does not do the same thing.Additional context
In particular a linear model as baseline could
The text was updated successfully, but these errors were encountered: