I was running a hyperparameter optimisation with ray tune. After hours and hours the system crashed and I am trying to recover the experiment from the ray_results file. I did not specify a name in the tune.run function so I do not know what to call. I am not sure what the best way to proceed is and if I can save what I have already done.
If you’re not using tune.grid_search, you should be able to call tune.run(..., resume=True with other arguments held constant as your previous tuning run.
If you are using tune.grid_search, maybe this PR that I’m working on right now will help solve your issue?