Example GCN implementation seems to be different from original paper's implementation #403
sepiabrown
started this conversation in
PCQM4M-LSC
Replies: 1 comment 1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Looking at the GCN implementation of here and here, they don't seem to follow the implementation on Semi-supervised classification with graph convolutional networks..
The paper's implementation seems to put ReLU activation after adding all the convolved variables and bias. But the implementation provided by OGB seems to apply ReLU activation first and then sum up the variables. Also, there is no reference to the idea of adding edge embeddings through
BondEncoder
.Is the code just a variant of the paper's implementation where ReLU is applied after? Any reference would be appreciated!
Beta Was this translation helpful? Give feedback.
All reactions