paddle.distributed.launch一个小地方,文档和行为不符
Created by: houj04
日志:每个训练进程的日志默认会保存在 ./mylog 目录下,您也可以通过参数 --log_dir 进行指定。
但是其实代码里面并没有这个./mylog
的默认值:
https://github.com/PaddlePaddle/Paddle/blob/release/1.8/python/paddle/distributed/launch.py
parser.add_argument(
"--log_dir",
type=str,
help="The path for each process's log.If it's not set, the log will printed to default pipe."
)