Why Trainer resume_from_checkpoint only resume when fit. #8796
Answered
by
tchaton
tshu-w
asked this question in
Lightning Trainer API: Trainer, LightningModule, LightningDataModule
-
I want to test again with ckpt. However I found Trainer resume_from_checkpoint only work for fit. Is there any particular reason for this?
|
Beta Was this translation helpful? Give feedback.
Answered by
tchaton
Aug 19, 2021
Replies: 1 comment 2 replies
-
Dear @tshu-w, The resume_start will reload all states which might not be required for testing. We are currently refactoring this part of the code. Best, |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
tshu-w
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Dear @tshu-w,
The resume_start will reload all states which might not be required for testing. We are currently refactoring this part of the code.
Best,
T.C