I am trying to modify log dir in hydra.
In default, output dir in hydra is like below.
outputs
└── 2022-11-12
├── 18-17-28
│ └── train.log
├── 18-18-37
│ └── train.log
└── 18-19-01
└── train.log
However, this folder structure is not suitable to find log by experiment name. tree structure I want is like below.
outputs
└── expname-2022-11-12-18-17-28-18-00-00
└── train.log
└── expname2-2022-11-12-18-17-28-18-10-00
└── train.log
which expname, expname2 is provided like this. any solutions?
python train.py expname=expname
plus. log file does not contain logs starting like this: [2022-11-12 17:51:53,936][HYDRA]
which I want to log with callback
Thanks in advance