-
-
Notifications
You must be signed in to change notification settings - Fork 25.8k
[MRG+1] Add note about the size of a random forest model #6276 #8437
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
[MRG+1] Add note about the size of a random forest model #6276 #8437
Conversation
Codecov Report
@@ Coverage Diff @@
## master #8437 +/- ##
==========================================
+ Coverage 95.47% 95.47% +<.01%
==========================================
Files 342 342
Lines 60902 60907 +5
==========================================
+ Hits 58149 58154 +5
Misses 2753 2753
Continue to review 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.
Otherwise LGTM
doc/modules/ensemble.rst
Outdated
|
||
The size of the model with the default parameters is :math:`O( M * N * log (N) )`, | ||
where :math:`M` is the number of trees and :math:`N` is the number of samples. | ||
In order to reduce the size of the model, you can adapt those parameters: |
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 don't think adapt is the right word. You can say "change" or "modify" or "tune"
Thanks! |
Reference Issue
Fixes #6276
What does this implement/fix? Explain your changes.
Add a note in the section random forest for informing how to reduce the size of the resulting model.
Any other comments?
First contribution, remarks are welcome.