Closed atoutou closed 3 years ago
I have trained a NERDA model and want to save the model but I can't find any function in the NERDA to do this. How do I save the model?
you could use the torch save and load method
import torch torch.save(model, 'model.pt')
and load it back model = torch.load('model.pt')
model = torch.load('model.pt')
Thanks for your quick reply. It works properly.
I have trained a NERDA model and want to save the model but I can't find any function in the NERDA to do this. How do I save the model?