-
-
Notifications
You must be signed in to change notification settings - Fork 25.8k
[MRG+1] FIX/DOC Improve documentation regarding non-determinitic tree behaviour #8452
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
This is good. We should also update the website soon as that is the most visible documentation. You edited RandomForestClassifier and RandomForestRegressor as well, yes? |
Codecov Report
@@ Coverage Diff @@
## master #8452 +/- ##
=======================================
Coverage 95.47% 95.47%
=======================================
Files 342 342
Lines 60907 60907
=======================================
Hits 58154 58154
Misses 2753 2753
Continue to review full report at Codecov.
|
+1 for MRG |
@jmschrei Yes I did the change for the random forest, ijust forgot to add it in the first post |
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
sklearn/ensemble/forest.py
Outdated
----- | ||
The features are always randomly permuted at each split. Therefore, | ||
the best found split may vary, even with the same training data, | ||
``max_feature=n_features`` and ``bootstrap=False``, if the improvement |
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.
*max_features
Thx @glemaitre :) |
… behaviour (scikit-learn#8452) * FIX/DOC Improve documentation regarding non-determinitic tree behaviour * FIX correct max_features
… behaviour (scikit-learn#8452) * FIX/DOC Improve documentation regarding non-determinitic tree behaviour * FIX correct max_features
… behaviour (scikit-learn#8452) * FIX/DOC Improve documentation regarding non-determinitic tree behaviour * FIX correct max_features
… behaviour (scikit-learn#8452) * FIX/DOC Improve documentation regarding non-determinitic tree behaviour * FIX correct max_features
… behaviour (scikit-learn#8452) * FIX/DOC Improve documentation regarding non-determinitic tree behaviour * FIX correct max_features
… behaviour (scikit-learn#8452) * FIX/DOC Improve documentation regarding non-determinitic tree behaviour * FIX correct max_features
… behaviour (scikit-learn#8452) * FIX/DOC Improve documentation regarding non-determinitic tree behaviour * FIX correct max_features
… behaviour (scikit-learn#8452) * FIX/DOC Improve documentation regarding non-determinitic tree behaviour * FIX correct max_features
Reference Issue
Fixes #8443
What does this implement/fix? Explain your changes.
Add details regarding the non-deterministic behaviour of decision tree.
Any other comments?
Edited:
DecisionTreeClassifier
DecisionTreeRegressor
GradientBoostingClassifier
GradientBoostingRegressor
RandomForestRegressor
RandomForestClassifier