-
Hi! I have one graph and a number of different sets of node embeddings for this graph. Using a larger adjacency matrix does not sound efficient in this case. I think the simplest way is to feed in 3D node embedding input ( |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Yes, not all GNN operators can operate on 3D tensors. It is currently recommended to follow the standard PyG batching in other cases. This will solely replicate the |
Beta Was this translation helpful? Give feedback.
Yes, not all GNN operators can operate on 3D tensors. It is currently recommended to follow the standard PyG batching in other cases. This will solely replicate the
edge_index
for each example in the mini-batch once, which is negligible in terms of memory consumption.