-
Hi, I'm pretty new to the field of graph neural networks and pytorch geometric, so this might be quite obvious. However, is it possible to train a model on a dataset of differently sized graphs (e.g. each graph has a different number of nodes). Let's assume that I want to make graph level predictions, would this be possible? Thank you in advance. |
Beta Was this translation helpful? Give feedback.
Answered by
rusty1s
Oct 13, 2021
Replies: 1 comment 1 reply
-
Yes, this is possible and supported out-of-the-box via our |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
risufaj
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yes, this is possible and supported out-of-the-box via our
DataLoader
, see here. Here is an example on how to use.