pytorch load not work as before code example
Example 1: pytorch save model
Saving:
torch.save(model, PATH)
Loading:
model = torch.load(PATH)
model.eval()
A common PyTorch convention is to save models using either a .pt or .pth file extension.
Example 2: how to load pretrained model in pytorch
pytorch_model = MNISTClassifier()
pytorch_model.load_state_dict(torch.load(path))
model.eval()