We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Configured to log all checkpoints, but only a single is logged
from lightning.pytorch.loggers import WandbLogger wandb_logger = WandbLogger( project="eurosat-test3", name="imagenet", log_model="all", save_dir = "wandb_logs_tests" ) trainer = Trainer( logger=wandb_logger, min_epochs=15, max_epochs=25, ) trainer.fit(model=model, datamodule=datamodule) glob("wandb_logs_tests/eurosat-test3/*/checkpoints/*.ckpt") # returns only a single checkpoint
0.5.0
The text was updated successfully, but these errors were encountered:
Is this a torchgeo bug or lightning bug?
Sorry, something went wrong.
I commented out configure_callbacks(self) and now all logs are created by the callback:
configure_callbacks(self)
callback
However if I comment out the callback, I still only have 1 checkpoint (final) locally
However all checkpoints are uploaded
It is not clear but perhaps this is intended behaviour and not a bug. Either way I think this rules out this being a torchgeo bug so closing
Successfully merging a pull request may close this issue.
Description
Configured to log all checkpoints, but only a single is logged
Steps to reproduce
Version
0.5.0
The text was updated successfully, but these errors were encountered: