Any restart option? #67
-
Let's say I have SevenNet training stopped before it reaches the proper termination condition like epoch number or wall time limit. In this case, should I need to fine-tune the model using exactly same conditions from the latest model to continue this training? Or are there any keywords that just continue/restart the training from latest epoch? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
There is no exact keyword for restart, but you can do the same by continuing from the latest checkpoint. Set You can also change an optimizer, learning rate, and scheduler as you want but in this case, corresponding reset_* keys should be If sevennet finds a |
Beta Was this translation helpful? Give feedback.
There is no exact keyword for restart, but you can do the same by continuing from the latest checkpoint. Set
reset_optimizer
andreset_scheduler
asFasle
. It will smoothly restart from the given checkpoint without any artifacts.You can also change an optimizer, learning rate, and scheduler as you want but in this case, corresponding reset_* keys should be
True
.If sevennet finds a
log.csv
under working directory, it will append logs to the same file. But there might exist an overlap between the previous run and now if it is not continued from the exact last epoch, where the training stopped.