How to model my data suitable for GNNs? #3589
Unanswered
shahinghasemi
asked this question in
Q&A
Replies: 1 comment
-
|
Beta Was this translation helpful? Give feedback.
0 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.
-
First of all Thank you for your great support and effort. I’m quite new to GNNs so my questions might seem basic.
These are my data(all are binary matrices):
D-B
of shape(d, b)
B-B
of shape(b, b)
D-P
of shape(d, p)
D-S
of shape(d, s)
The final task is to predict the
D-B
matrix, here’s the considerations/questions for this task:D-D
of shape(d, d)
to use it as adjacency matrix for GNN operators. Is there any solution to use GNN operators without adjacency matrix or any approach to simulate the adjacency matrix in this situation?D-P
andD-S
as feature matrices for nodes of typeD
. then How can I involve them as so?B-B
, and(D-B).T
as adjacency and feature matrix respectively. However this way we’re ignoringD-P
andD-S
matrices which can provide further information to improve the accuracy(is there any way to involve them using this approach?).D
,B
,P
,S
) and edges. However it’s not clear to me how should I handle the problem with this setup since I don’t have adjacency for each node type(except forB
)?Any suggestion is highly appreciated. Thanks in advance.
Beta Was this translation helpful? Give feedback.
All reactions