How to batch data for GCNConv? #9531
Replies: 2 comments
-
Can you check why your input |
Beta Was this translation helpful? Give feedback.
0 replies
-
So, the problem was on my end: I wasn't pre-processing the data properly, which probably explains why I ended up with tuples rather than tensors when creating the |
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
-
I'm trying to run some experiments using the GCNConv model, but, whenever I try to execute batched, data, I get the following message:
ValueError: 'GCNConv' received a tuple of node features as input while this layer does not support bipartite message passing. Please try other layers such as 'SAGEConv' or 'GraphConv' instead
.I have already padded my node features so that they have the same length across the dataset, but the issue remains. Here's the model:
The usual form of my batches:
And a single
Data
element:I do feel like there's a simple fix for this that I am not able to see, so any help or suggestions is greatly appreciated.
Thanks!
Beta Was this translation helpful? Give feedback.
All reactions