Replies: 1 comment 2 replies
-
@matr1x-1 Yes, you are correct about the fine-tuning procedure. As for restarting, it is often used when one wants to continue training if the training has crashed. If you add new data before restarting (such as new systems added in the input.json file), the restarting process will use the modified input script and only reload the model weights, starting training from the crashed steps (provided the model parameters are consistent). This means that the newly added data will be used. You can even replace all the old data with new data systems to confirm this. Additionally, there's another approach called 'init-model' that allows you to only reload the model weights and start a new training session, as described here. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
My question is about the difference between finetuning and restarting. As far as I have understood, it seems that
Is this correct and if I want to train on new data, do I really have to use finetuning instead of restarting? Or could there be another reason why the model does not seem to learn the newly added data?
Thank you for your support!
Beta Was this translation helpful? Give feedback.
All reactions