You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To change the checkpoint path use the default_root_dir argument:
# saves checkpoints to 'some/path/' at every epoch end
trainer = Trainer(default_root_dir="some/path/")
However, if a logger is configured, the checkpoints go magically to the path of the logger and not to default_root_dir:
📚 Documentation
The documentation about check pointing claims:
However, if a logger is configured, the checkpoints go magically to the path of the logger and not to default_root_dir:
It's even more magic when you add several loggers (seems to take the path of the first logger)
I'm missing such thinks in the documentation...
cc @lantiga @Borda
The text was updated successfully, but these errors were encountered: