Update function not used anymore in conv? #4005
Answered
by
rusty1s
Jeriousman
asked this question in
Q&A
-
I have been checking PyG built-in conv layers like GATConv, SAGEConv, and GIN_CONV and seen that update function was not defined to update embeddings anywhere. Why is that? Is the update function fused in somewhere? Can you please clarify this? |
Beta Was this translation helpful? Give feedback.
Answered by
rusty1s
Feb 6, 2022
Replies: 1 comment 1 reply
-
The |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
Jeriousman
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The
update
method is still supported. However, in our code base, we mostly removed it and instead placed all of its original code simply after thepropagate
call. This has the same effect but is probably easier to read and understand.