Edge Classification without node features #7315
Unanswered
ntquanghai
asked this question in
Q&A
Replies: 1 comment 1 reply
-
MLP(torch.cat([src_user, dst_user, edge_attr], dim=-1)) |
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.
-
Hi, I am currently working on a transaction graph dataset, where each transaction is an edge between two nodes. The nodes do not include any features, while the edges will contain the majority of the transaction details. Moreover, between two nodes, there can exist many edges, as in there can be many transactions between two people. My goal is to detect whether a transaction is fraudulent or not, and so I believe this to be an Edge Classification problem.
So far, I have opted to build a model which will treat edges the same way as nodes, and replace the node features with edge features in the parameters. Moreover, I have also seen some similar examples, which include the edge features in the edge_attr of some operators, then generalize a tensor of zeros as node features, then use them as inputs for the models
So I have some questions
I apologize if the questions seem a bit simple, I am a beginner to the field and some concepts are still a bit hard for me to grasp. I would appreciate any response, and thank you all very much!
Beta Was this translation helpful? Give feedback.
All reactions