LoggerCollection name redundancy #10954
Labels
bug
Something isn't working
good first issue
Good for newcomers
logger
Related to the Loggers
priority: 1
Medium priority task
Uh oh!
There was an error while loading. Please reload this page.
🐛 Bug
When you create a logger collection, the name of the logger collection is used for the save path in
ModelCheckpoint
. LoggerCollection concats the names of all logger. Therefore, in my example the checkpoints are saved tof"{experiment_name}_{experiment_name}"
instead ofexperiment_name
.To Reproduce
Expected behavior
I would expect the checkpoints to be saved under the same name I set for the loggers. I understand the motive behind the current implementation, but I think only unique names should be concatenated there. Same goes for the version property.
Environment
conda
,pip
, source): piptorch.__config__.show()
: -Additional context
Workaround is to set the
dirpath
argument manually.cc @Borda @awaelchli @edward-io @ananthsub @tchaton
The text was updated successfully, but these errors were encountered: