ray-project / tune-sklearn

A drop-in replacement for Scikit-Learn’s GridSearchCV / RandomizedSearchCV -- but with cutting edge hyperparameter tuning techniques.
https://docs.ray.io/en/master/tune/api_docs/sklearn.html
Apache License 2.0
465 stars 52 forks source link

[BUG] Verbose=0 does not work, when n_jobs is set to 1. #235

Closed umutcakan closed 2 years ago

umutcakan commented 2 years ago

Normally, verbose=0 works with n_jobs=-1 (default), but it is not working when n_jobs is set to 1. Outputs everything on the console. When n_jobs is > 1, it works as intended.

umutcakan commented 2 years ago

Problem resolved models need to be also verbose in their own parameters.