neuralpredictor.pytorch
neuralpredictor.pytorch copied to clipboard
Saved Models?
Is there a way to view the models saved after the training? I can't open the .pyc files even though they have the Python logo.
I think you need to call torch.save(model.state_dict() to save the model and call torch.load to reload the model. See tutorial here: https://pytorch.org/tutorials/beginner/saving_loading_models.html
pyc file are "python cache" files. They are not checkpoints.