Replies: 1 comment 1 reply
-
|
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
In the initial argument check for the MessagePassing class, 'None' is accepted as the aggregation scheme:
assert self.aggr in ['add', 'sum', 'mean', 'min', 'max', 'mul', None]
However, the scatter function later used to aggregate messages does not allow such an aggregation (aka no aggregation):
Maybe this should be addressed?
Beta Was this translation helpful? Give feedback.
All reactions