How to get the node features for link prediction task? #5439
shahinghasemi
started this conversation in
General
Replies: 1 comment 2 replies
-
Yes, this is the usual appraoch. You can also use a learnable |
Beta Was this translation helpful? Give feedback.
2 replies
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.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello, I have a heterogeneous network this is the data I have:
types of nodes:
{dr, di, t, p, s, e}
types of edges:
dr-p
,dr-e
,dr-t
,dr-s
,dr-di
which are undirected.The final problem is to find the links in
dr-di
.I extended the provided example with my data. I have a big problem. I only have feature of node
di
and don't have any features for other nodes. for now I used identity matrix for other nodes types which is of shape(N-node, N-node)
whichnode
is our node types.This is my question: How can I get the (initial)features in a reasonable way for other node types to use them for message-passing process to get enriched embeddings for my node types? Is using identity matrix for node features makes sense?
Beta Was this translation helpful? Give feedback.
All reactions