Implementing a Graph convolutional layer #2151
Unanswered
wdoppenberg
asked this question in
Q&A
Replies: 1 comment 3 replies
-
Maybe you could give some examples of what you would expect |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi all,
I'm trying to implement a
candle
version ofGCNConv
, and am struggling with the message passing & aggregation logic. Obviously I need to use some scatter method, soscatter_add
is an obvious candidate to use, however I cannot find out how to use it properly in this context. In short, the output of this layer should be[N, F]
withN
being # nodes andF
being the out channels.An example:
Yields the following:
If someone can point me in the right direction I'd be very grateful :)
Beta Was this translation helpful? Give feedback.
All reactions