Replies: 1 comment 15 replies
-
I think what you want to do is use |
Beta Was this translation helpful? Give feedback.
15 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.
-
Hi everyone,
I have a undirected heterogeneous graph with 1 type of node, but different kinds of edges, with the ultimate goal of performing link regression (as it is a probabilistic network with link weights between 0 and 1) on all edge types.
The current workflow first applies a
RandomLinkSplit
transformation to get the train, validation and test splits and then instantiates aNeighborLoader
on each of the splits to get their respective loaders, which are then passed to a Pytorch Lightning model.I can change the node loaders' parameters just fine in order to get different
batch_size
s, but would it be possible to batch the edges instead? I think this would pose some problems since the different edge types can differ for the number of elements even by orders of magnitude. Even so, should I then create different LinkLoaders for each edge type?I'm not even sure that batching for edges even makes sense, and I would greatly appreciate your input on the matter!
Beta Was this translation helpful? Give feedback.
All reactions