10000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
If I set verbose=2 within RandomizedSearchCV, I ideally want to see the steps that Parallel takes:
verbose=2
RandomizedSearchCV
[Parallel(n_jobs=-1)]: Done 2 out of 10 | elapsed: 40.9s remaining: 2.7min
but I don't want to see the intermediate reporting of the CV search since that gets super noisy:
[CV] estimator__alpha=1.356430250055455e-06 .......................... [CV] estimator__alpha=1.356430250055455e-06 .......................... [CV] estimator__alpha=8.022557928125194e-06 .......................... [CV] estimator__alpha=1.1751658491093436e-05 ......................... [CV] estimator__alpha=1.1751658491093436e-05 ......................... [CV] estimator__alpha=1.1751658491093436e-05 ......................... [CV] estimator__alpha=1.356430250055455e-06 .......................... [CV] estimator__alpha=8.022557928125194e-06 ..........................
if we could change verbose > 1 to verbose > 2 this would solve my usecase.
verbose > 1
verbose > 2
scikit-learn/sklearn/model_selection/_validation.py
Lines 482 to 488 in acb8106
I'd be happy to submit a PR if this makes sense.
Related:
The text was updated successfully, but these errors were encountered:
Sorry, something went wrong.
@jnothman verbose=1 outputs
verbose=1
[Parallel(n_jobs=-1)]: Using backend LokyBackend with 8 concurrent workers. [Parallel(n_jobs=-1)]: Done 30 out of 30 | elapsed: 46.5min finished
with nothing in the middle
@jnothman I filed a PR: #13091
closing as no reply in the PR. I don't think it's worth doing. Feel free to reply /reopen.
Successfully merging a pull request may close this issue.
If I set
verbose=2
withinRandomizedSearchCV
, I ideally want to see the steps that Parallel takes:but I don't want to see the intermediate reporting of the CV search since that gets super noisy:
if we could change
verbose > 1
toverbose > 2
this would solve my usecase.scikit-learn/sklearn/model_selection/_validation.py
Lines 482 to 488 in acb8106
I'd be happy to submit a PR if this makes sense.
Related:
The text was updated successfully, but these errors were encountered: