Replies: 1 comment 2 replies
-
PyG can handle multiple features. All features that you pass to propagate are available in message, aggregate and update. Does that help you implement your method? |
Beta Was this translation helpful? Give feedback.
2 replies
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.
-
Hello, I'm trying to implement 3DGCN (https://arxiv.org/abs/1811.09794) with PyG.
The model deals with two features, scalar feature and vector feature.
The model updates one feature by mixing it with other features (eg. scalar feature is updated with previous scalar feature and vector feature).
So, in the update phase, I think we should assign which feature to be updated with a specific message.
Is there any simple way to do that?
In Tutorial and other examples, I think there isn't any model to deal with multiple node features.
Or, PyG automatically decides which feature to be updated, because two features(messages) have different shapes.
Thank you!
Beta Was this translation helpful? Give feedback.
All reactions