-
Hi folks, thank you so much for developing PyG. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
def message(self, x_j: Tensor):
return x_j That's why it will contain |
Beta Was this translation helpful? Give feedback.
__user_args__
collects the arguments ofmessage
,aggregate
andupdate
and collects them. By default,message
is implemented asThat's why it will contain
x_j
without any custommessage
definition.