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

warnings in _trainable not shown #138

Open amogkam opened 3 years ago

amogkam commented 3 years ago

Warning messages (warnings.warn) are used in the _Trainable, but these don't actually get shown on stdout because they are inside an actor.

I think the fix is to follow this https://stackoverflow.com/questions/55272066/how-can-i-use-the-python-logging-in-ray and use logging instead.