Dataloader for mini-batch is only for inductive learning with multiple graph? #4135
Answered
by
rusty1s
Jeriousman
asked this question in
Q&A
-
Beta Was this translation helpful? Give feedback.
Answered by
rusty1s
Feb 24, 2022
Replies: 1 comment 1 reply
-
Yes, for learning on large graphs, have a look at |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
Jeriousman
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yes, for learning on large graphs, have a look at
NeighborLoader
,ClusterLoader
,GraphSAINTLoader
, etc (all loaders that take in adata
object instead of adataset
). If you want to perform inductive learning, you may first obtain a subgraph only containing training nodes:train_data = data.subgraph(train_mask)
.