-
Notifications
You must be signed in to change notification settings - Fork 917
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
Feat/xgboost #1405
Feat/xgboost #1405
Conversation
Codecov ReportBase: 93.97% // Head: 94.00% // Increases project coverage by
Additional details and impacted files@@ Coverage Diff @@
## master #1405 +/- ##
==========================================
+ Coverage 93.97% 94.00% +0.02%
==========================================
Files 82 83 +1
Lines 8915 8968 +53
==========================================
+ Hits 8378 8430 +52
- Misses 537 538 +1
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. ☔ View full report at Codecov. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for this implementation 👍 I added some basic remarks.
(PS: I did not run tests myself)
Co-authored-by: eliane-maalouf <[email protected]>
Co-authored-by: eliane-maalouf <[email protected]>
Co-authored-by: eliane-maalouf <[email protected]>
An XGBoost implementation, supporting both
poisson
andquantile
likelihoods. For now it still relies onMultiOutputRegressor
for simplicity (this way it reuses what we have in place for other regression models); we can try and leverage multi-output capabilities of xgboost at some point.Solves #1134