-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
SlidingEstimator
seems to ignore verbose=False
(especially when n_jobs > 1)
#11444
Comments
At some point I think we tried to do away with class-level |
Ok, this would mean that decoding was not updated this way as fit and score methods do not have a verbose argument. |
+1 to add them. Do you have time to do a PR @mmagnuski ? |
Yes, I can take a look. |
But I think that in this specific case it is worth to stay consistent with sklearn and specify
So I think we can do exactly as sklearn in this case (maybe except |
Description of the problem
SlidingEstimator
seems to ignoreverbose=False
when n_jobs > 1. This happens during.fit()
and.score()
and leads to progress bar showing up and multiple messages in the console:When the estimators are fit many times (for example when calculating randomization control or processing multiple subjects) this leads to many, many messages in the console.
Steps to reproduce
Link to data
No response
Expected results
Nothing printed to the console when
verbose=False
.Actual results
Additional information
The text was updated successfully, but these errors were encountered: