-
Notifications
You must be signed in to change notification settings - Fork 62
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to resume training? #43
Comments
This is important! Any help on this one? |
Hi, for me I just load the model I saved and then keep training on the model: model.load_model("t5", 'file/to/your/trained/model', use_gpu=True) #the rest is all the same for training MAX_EPOCHS = 3 torch.cuda.memory_summary(device=None, abbreviated=False) model.train(train_df=df[0:(int)(0.7TRAINNING_SIZE)], |
How do you save the model? Because there doesnt seems to be any save model. |
Hi guys!
Is it possible to continue training from specific checkpoint?
The text was updated successfully, but these errors were encountered: