-
-
Notifications
You must be signed in to change notification settings - Fork 25.8k
DOC Improve n_jobs docs in sklearn/multioutput.py #18634
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
DOC Improve n_jobs docs in sklearn/multioutput.py #18634
Conversation
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 @tnwei
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.
LGTM, thanks @tnwei
Thanks @adrinjalali for review, would like to ask you to label this PR as |
Only PRs in repos with |
@adrinjalali You're right that repos can opt-in for at the repo level via specifying the Aside from that, I have submitted a sister PR (#18633), which has been updated following changes to this one. Hope you can take a look if time permits, TQVM! |
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.
Thank you for the PR @tnwei !
Resolved comments! |
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.
Thank you @tnwei!
LGTM
Reference Issues/PRs
Addresses part of #14228
What does this implement/fix? Explain your changes.
Updated docs to reflect meaning and usage of n_jobs in
sklearn/multioutput.py
, affecting:sklearn.multioutput.MultiOutputRegressor
sklearn.multioutput.MultiOutputClassifier
Any other comments?
sklearn/multioutput.py
.sklearn.multioutput.MultiOutputRegressor
has notes on usingn_jobs > 1
for fast estimators potentially leading to slowdowns, moved to dedicated Notes section. Also replicated inMultiOutputClassifier
for parity.