-
Hello everyone and thanks a lot for both the creation of pyg and the great documentation. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 10 replies
-
The prediction of new edges happens inside the decoder part of the model. That is, we use the existing edges in the graph to encode node embeddings using a GNN (encoder part), and then use these node embeddings to find new links (decoder part). You can best see this here, where |
Beta Was this translation helpful? Give feedback.
The prediction of new edges happens inside the decoder part of the model. That is, we use the existing edges in the graph to encode node embeddings using a GNN (encoder part), and then use these node embeddings to find new links (decoder part). You can best see this here, where
decode_all
produces a new adjacency matrix. Let me know if this clarifies your issues.