CheckpointIO¶
- class lightning.pytorch.plugins.io.CheckpointIO[소스]¶
기반 클래스:
abc.ABCInterface to save/load checkpoints as they are saved through the
Strategy.경고
This is an experimental feature.
Typically most plugins either use the Torch based IO Plugin;
TorchCheckpointIObut may require particular handling depending on the plugin.In addition, you can pass a custom
CheckpointIOby extending this class and passing it to the Trainer, i.eTrainer(plugins=[MyCustomCheckpointIO()]).참고
For some plugins, it is not possible to use a custom checkpoint plugin as checkpointing logic is not modifiable.
- abstract load_checkpoint(path, map_location=None)[소스]¶
Load checkpoint from a path when resuming or loading ckpt for test/validate/predict stages.
- 매개변수
Returns: The loaded checkpoint.