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))
.
1 Like
looks like the default is verbose = 3 instead of 2 as described in the manual