AttributeError: 'GCNConv' object has no attribute 'aggr_module' #6293
Unanswered
seriouslym
asked this question in
Q&A
Replies: 1 comment
-
In general, we cannot assume backward compatibility of saving and loading models across different PyG versions since this wouldn't allow us to make any changes to the underlying layers. At best, you should always store only the |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
In May of this year, I used pyg (torch-1.10.0+cu113) to train several models (GCN, PPNP, GAT) and saved them. When I loaded the models in the same way today, some errors were reported.
1: TypeError: edge_update() missing 6 required positional arguments: 'alpha_j', 'alpha_i', 'edge_attr', 'index', 'ptr', and 'size_i'
2: AttributeError: 'GCNConv' object has no attribute 'aggr_module'
Beta Was this translation helpful? Give feedback.
All reactions