-
Here is a discussion about when define a
In torch_geometric 1.4.2 version, we can pass out = conv1(x, edge_index, edge_type, edge_norm) so how can I set the edge_norm now (i.e., the latest version of PyG)? Is there any method to apply edge_norm like: out = conv1(x, edge_index, edge_type)
out = norm(out, edge_norm) |
Beta Was this translation helpful? Give feedback.
Answered by
sailist
Aug 17, 2022
Replies: 1 comment
-
Sovled by coping code from the old 1.4.2 version
|
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
sailist
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Sovled by coping code from the old 1.4.2 version