Running in Inductive mode
khangtran2020 opened this issue · 2 comments
khangtran2020 commented
Hi authors,
Is there a way to run GAP in the inductive setting?
Thank you.
sisaman commented
The current GAP implementation supports both transductive and inductive settings, but the existing datasets (Facebook, Reddit, Amazon) are all transductive.
You can extend the DatasetLoader class to add support for inductive datasets. Note that the train, validation, and test subgraphs of the inductive dataset must be integrated into a single Data
object so that it works seamlessly with the rest of the code.
khangtran2020 commented
Thank you, I have modified the code to run in Inductive mode. Thank you very much.