I want to set optuna's study.optimize verbosity to 0. I thought optuna.logging.set_verbosity(0)
might do it, but I still get the Trial 0 finished with value ....
updates for every trial
What is the correct way to do this? Unfortunately, extensive searching through the docs still only results in the above method.
Many thanks in advance
optuna.logging.set_verbosity(optuna.logging.ERROR)
? – Sensational