Ray Tune Table location

I am using Ray Tune and I get a table in the command line with a performance report of every simulation. I wanted to know if there is Json of txt file with this table somewhere. Thank you.

Hi @Gaddiel_Ouaknin ,

Dig into your <path to user folder>/ray_results/ folder.
All experiments are logged in there in the form of checkpoints, but also regarding progress.
Specifically, you’ll want to look at the files progress.csv (For a high-level table view) and result.json for the detailed stuff you you also get in your CLI :slightly_smiling_face:

Best