Hook for Fully Formed Checkpoints #11704
Answered
by
rohitgr7
dcharatan
asked this question in
Lightning Trainer API: Trainer, LightningModule, LightningDataModule
-
I would like to create a hook that automatically uploads checkpoints to the cloud (e.g., AWS, Azure) when they're created. I tried using
However, states for optimizers, schedulers, AMP, etc. are added after |
Beta Was this translation helpful? Give feedback.
Answered by
rohitgr7
Feb 2, 2022
Replies: 1 comment 1 reply
-
hey @dcharatan ! I'd rather suggest using the remote filesystems. You can also specify the remote path inside or use CheckpointIO plugin. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
dcharatan
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
hey @dcharatan !
I'd rather suggest using the remote filesystems. You can also specify the remote path inside
ModelCheckpoint
.or use CheckpointIO plugin.