-
-
Notifications
You must be signed in to change notification settings - Fork 25.8k
[MRG] Joblib 0.9.4 #6179
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] Joblib 0.9.4 #6179
Conversation
@@ -262,7 +259,7 @@ class Parallel(Logger): | |||
pre_dispatch: {'all', integer, or expression, as in '3*n_jobs'} | |||
The number of batches (of tasks) to be pre-dispatched. | |||
Default is '2*n_jobs'. When batch_size="auto" this is reasonable | |||
default and the multiprocessing workers should never starve. | |||
default and the multiprocessing workers shoud never starve. |
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.
Typo here
Thanks @aabadie but those typos should be fixed upstream, not in the scikit-learn repo. |
It's weird that we did not catch them while reviewing the joblib PRs... |
Fixed in joblib/joblib@72e1625, will be included in the next joblib release. |
Thanks @ogrisel.
Indeed, I was surprised as well. |
@ogrisel so bugfix release? There was also the gradient boosting issue... |
@amueller I am indeed in favor of a bugfix release as the joblib bug can cause silent errors (wrong CV results although I did not reproduce the issue when using
Do you have the issue number handy? Do you have other important bug fixes in mind? Let me merge this PR and backport it to 0.17.X. |
I'm a bit out of the loop at the moment because I try to focus on writing the book. @jmschrei can you point us to the gbrt speed bugfix? |
The fix that I am about to do for #6195
|
The fix was #5858. |
#6147 is that a joblib issue? |
No it's a weird behavior of |
Here is a code sync for joblib 0.9.4. In particular it solves a bug that can cause silently wrong results as reported in #6063.
Therefore I would like to make backport this in the maintenance branch to release 0.17.1 ASAP.