Replies: 1 comment 1 reply
-
You can also consider exploring unsupervised methods (e.g., DeepWalk or Node2Vec) to generate node features first and then feed them into GNNs, FYI: https://github.com/pyg-team/pytorch_geometric/blob/master/examples/node2vec.py |
Beta Was this translation helpful? Give feedback.
1 reply
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.
-
Below is the code
The problem is that I have a training set containing edges and nodes without any node or edge features, I want to compare GNN with other models as well, so basically I take 0.80 of data and train the GCN on it, and test it on some examples of neg and pos examples. I want to have advice on how I can improve it, I have taken this code from the ogbl-ddi page written by @rusty1s https://github.com/snap-stanford/ogb/tree/master/examples/linkproppred/ddi, Let me also know if there some issues you see.
Beta Was this translation helpful? Give feedback.
All reactions