I am trying to use tune.run to get multiple trials for my experiment. But after I used the tune.run, I got a FileNotFoundError like below:
Traceback (most recent call last):
File"/Users/zhaopengqian/miniconda3/envs/flow/lib/python3.7/sitepackages/ray/tune/function_runner.py", line 248, in run
self._entrypoint()
File"/Users/zhaopengqian/miniconda3/envs/flow/lib/python3.7/sitepackages/ray/tune/function_runner.py", line 316, in entrypoint
self._status_reporter.get_checkpoint())
File"/Users/zhaopengqian/miniconda3/envs/flow/lib/python3.7/sitepackages/ray/tune/function_runner.py", line 580, in _trainable_func
output = fn()
File “/Users/zhaopengqian/Desktop/Experiment/deeprl_signal_control的/main.py”, line 218, in train_config
dirs = init_dir(base_dir)
File “/Users/zhaopengqian/Desktop/Experiment/deeprl_signal_contro的/utils.py”, line 34, in init_dir
os.mkdir(base_dir)
FileNotFoundError: [Errno 2] No such file or directory: ‘results/ma2c_1’
And the utils.py like below which is just to create a directory and file:
if not os.path.exists(base_dir):
os.mkdir(base_dir)
When I put this part before tune.run the propram operate correct. So, is the tune.run() change the os.path so that it can`t find the correct path?
How can i fix it?