-
Currently I am working on implementing GNN models. Sometimes after training a few epochs, I want to stop training, and save the model and the graph. I can save the model with |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
You can also save the data via |
Beta Was this translation helpful? Give feedback.
You can also save the data via
torch.save(data, ...)
and load it viatorch.load
. Note that this is already automatically handled when using ourDataset
andInMemoryDataset
abstractions.