Replies: 2 comments
-
|
Beta Was this translation helpful? Give feedback.
0 replies
-
so let's assume if i have edge feature are in 2dim. u mean to say first project them into 1-d and use them as edge weight.? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
Currently, I am using a combination of GCN and GAT layers for a node regression task in my GNN structure. This setup works well when using only node features. However, I now want to incorporate multi-dimensional edge features into my GNN structure.
The problem is that GCN seems to only accept 1-dimensional features (edge weights). Can you help me figure out how to integrate multi-dimensional edge features into GCN while still maintaining the current structure (i.e., combination of GCN and GAT layers)? I would prefer not to switch to a different GNN structure.
Beta Was this translation helpful? Give feedback.
All reactions