The NormConf object contains the paths to the save directory and the log directory, and those fields are immutable. The NormConf object can be re-used by different models, but then the save paths will be used and previous results may be overwritten and lost. If we want to change this, the log dir and save dir have to be changed with every model.
We can either:
let the user change the paths themselves,
re-use the same path, but use a UUID to make the paths distinct. The UUID could be something like
"{regression_model_type}_{XXXXXXXX}"
The NormConf object contains the paths to the save directory and the log directory, and those fields are immutable. The NormConf object can be re-used by different models, but then the save paths will be used and previous results may be overwritten and lost. If we want to change this, the log dir and save dir have to be changed with every model.
We can either:
"{regression_model_type}_{XXXXXXXX}"