Break batch according to number of nodes and then recombine it as it was #5263
Unanswered
antoni4040
asked this question in
Q&A
Replies: 1 comment
-
If you want to apply different GNNs depending of size, how about you separate these data objects in a pre-processing step and train your models sequentially? If you want to do it within one model, I think you have two options:
|
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
Uh oh!
There was an error while loading. Please reload this page.
-
A bit of a head-scratching riddle for an experiment I want to try. I have a batch with let's say 100 graphs. Some are large, some are medium, some are small, depending on the number of nodes. I want to break the batch, pass each of these though different GNNs (according to their size category) and then recombine the results. I could of course just make batches of one, but I'm worried about the slowdown. Thank you and sorry if it's a bit weird :)
Beta Was this translation helpful? Give feedback.
All reactions