I am creating custom result files in my jobs and want to sync them from the worker nodes to the head nodes (To rsync them down to my local computer later on). I tried to write them all into the local_dir
e.g. ~./ray_results
but unfortunately it seems that ray tune is only synching the individual trial folders in the local_dir
. Is this correct?
Asked
Active
Viewed 386 times
1

Denis
- 13
- 2
1 Answers
1
Yes; try writing them to the self.logdir
for each trainable.

richliaw
- 1,925
- 16
- 14
-
Thanks for the answer. Is there a way to get the logdir also when using the Function-based API? – Denis Apr 14 '20 at 02:07
-
2tune.get_trial_dir() is the new API – richliaw Aug 14 '20 at 04:46
-
Thanks for following up on this. – Denis Aug 28 '20 at 11:50