How to disable logging output in Ray Tune

When running ray tune, it print out tons of log messages. Is there a way to minimize the output messages? I used “tune.report()” to keep track of tuning process.

Hi @wxie2013, try setting verbose=0 in Tuner(run_config=air.RunConfig(verbose=0)).

See ray.air.RunConfig — Ray 2.3.0.

1 Like

looks like the default is verbose = 3 instead of 2 as described in the manual