-
Hello Pyg Team! I am an amateur in GNN and ML. I am currently experimenting with a toy heterogeneous graph very similar to the structure of Movielens dataset (Small version). My task is for link prediction in a single graph and finally getting the node embeddings. The train-valid and test split should be Transductive. I am trying to understand a few issues and concepts here. I am putting them step by step after attaching the code below : My Graph :
My relevant portion of code :
Issues and Questions :
I apologize that I could not decode from the instructions given in the documentation and previous discussions or maybe I am misinterpreting a lot of things. So came here to take a direct help from the respective contributors. Thanks a lot in advance! ^_^ |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
|
Beta Was this translation helpful? Give feedback.
edge_index
is split into 80%/10%/10% training/validation/test edges. From the 80% of training edges, 70% are used for message passing, and 30% are used for supervision.