I am trying to use CatBoost Classifier. Using it I do perform a grid search using randomised_search()
method. Unfortunately, the method prints to stdout iteration results for each tree built for each model tried.
There is a parameter supposed to control this: verbose. Ideally verbose could be set to False to inhibit all stdout prints, or set to an integer, specifying an interval between models which are reported (models, no trees).
Do you know how to control this? I get millions of lines in log files...
This question is somehow related to How to suppress CatBoost iteration results?, but that one related to the fit()
method, which has a logging_level, silent parameters as well. Another method, the cv()
cross validation, responds to logging_level='Silent'
cutting out all output.