-
Hi team, I have an edge classification task at hand, where each node and an edge has features, and I need to binary classify each edge. I don't really need to find a missing links as all edges are given, but I need to binary classify each of the edges on a separate, test graph. Is there an example that:
If there are no single example that does it all, then maybe there are separate examples you could share so I could combine it all together into a single unit? Thank you. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
I sadly do not have an exact example of this use-case to share, but it should be pretty similar to https://github.com/pyg-team/pytorch_geometric/blob/master/examples/link_pred.py (without the negative sampling part). |
Beta Was this translation helpful? Give feedback.
-
Hi @Ishitori, seems like your use case perfectly its what we are doing. I wanted to check up on you and see how it went with your project? Did you use Regards |
Beta Was this translation helpful? Give feedback.
TransformerConv
.LinkNeighborLoader
(needs installation from master)I sadly do not have an exact example of this use-case to share, but it should be pretty similar to https://github.com/pyg-team/pytorch_geometric/blob/master/exa…