Replies: 1 comment 4 replies
-
Yes, this relates to transductive learning. The GNN makes use of all available data, while supervision/loss computation is only performed on the training nodes. If you want to move this to an inductive learning scenario, you could do train_data = data.subgraph(data.train_mask) and input this into the GNN instead. |
Beta Was this translation helpful? Give feedback.
4 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.
-
Why not use the training data instead of all the data. Is it because GCN is transductive learning rather than inductive learning?If we use graphsage model , Is training data used instead of all data?

Beta Was this translation helpful? Give feedback.
All reactions