-
-
Notifications
You must be signed in to change notification settings - Fork 25.9k
[MRG] Minor doc update in ensemble.rst #11810
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
Conversation
Minor doc improvement
doc/modules/ensemble.rst
Outdated
|
||
.. math:: | ||
|
||
F_m(x) = F_{m-1}(x) + \arg\min_{h} \sum_{i=1}^{n} L(y_i, | ||
F_{m-1}(x_i) + h(x)) | ||
F_{m-1}(x_i) + h(x_i)) |
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.
I find this still pretty unclear tbh. the argmin returns a tree h, but on the left-hand side we apply F_m
to x
. So the operation of "apply the argmin to x" is missing.
So I'd break it up in to F_m(x) = F_{m-1}(x) + \gamma_m h_m(x)
(which is above)
and say h_m is given as h_m = argmin ....
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.
I think this is much clearer, thanks!
Thanks @NicolasHug |
This reverts commit 82428c5.
This reverts commit 82428c5.
Reference Issues/PRs
What does this implement/fix? Explain your changes.
Minor doc improvement
Any other comments?