GraphConv Equation #5306
GraphConv Equation
#5306
-
i am trying to better understand the equation found here https://pytorch-geometric.readthedocs.io/en/latest/modules/nn.html#torch_geometric.nn.conv.GraphConv under GraphConv. Can anyone tell me what each variable represents? I looked the referenced paper and cannot find what x or x' would represent. Is that the feature matrix? |
Beta Was this translation helpful? Give feedback.
Answered by
rusty1s
Aug 29, 2022
Replies: 1 comment 3 replies
-
The notation follows the standard PyG semantic introduced in the message passing tutorial. |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
anthonysirico
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The notation follows the standard PyG semantic introduced in the message passing tutorial.
x
refers to the input features of a node, andx‘
refers to the output features.