File tree Expand file tree Collapse file tree 2 files changed +1
-4
lines changed
pytorch_lightning/trainer Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -59,9 +59,6 @@ def resume_start(self) -> None:
59
59
1. from HPC weights if found
60
60
2. from `resume_from_checkpoint` file if provided
61
61
3. don't restore
62
-
63
- Raises:
64
- FileNotFoundError: If the path to the checkpoint file is provided but the file does not exist.
65
62
"""
66
63
self .resume_checkpoint_path = self .hpc_resume_path or self .resume_checkpoint_path
67
64
checkpoint_path = self .resume_checkpoint_path
Original file line number Diff line number Diff line change @@ -357,7 +357,7 @@ def __init__(
357
357
you can set ``replace_sampler_ddp=False`` and add your own distributed sampler.
358
358
359
359
resume_from_checkpoint: Path/URL of the checkpoint from which training is resumed. If there is
360
- no checkpoint file at the path, start from scratch . If resuming from mid-epoch checkpoint,
360
+ no checkpoint file at the path, an exception is raised . If resuming from mid-epoch checkpoint,
361
361
training will start from the beginning of the next epoch.
362
362
363
363
strategy: Supports different training strategies with aliases
You can’t perform that action at this time.
0 commit comments