I saw it mentioned in the documentation here (Console Output (Reporters) — Ray v1.1.0) although there isn’t an explicit example shown there. The log_to_file argument for tune.run only captures print statements and Python warnings, not the results table.
Thanks for the reply, Richard! That’s a good point, I guess I could just do python myscript.py | tee log.txt, and then it would just be an issue of how I control the verbosity.
So then log.txt would contain everything from the command prompt.
If I wanted to just capture the final results table alone and write it to a file, can I extract that from the resultant variable analysis = tune.run(...) somehow?