General question related to homogenous and heterogeneous graph. #8672
amalislam675
started this conversation in
General
Replies: 1 comment 8 replies
-
Does there exist a connection/mapping from nodes between the two separate graphs? If there is no mapping, then it is hard to fuse them. What you can do is, for example, compute graph readouts after each GNN layer and append them to the node features of the other graph. |
Beta Was this translation helpful? Give feedback.
8 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
@rusty1s , I have two separate homogeneous graph and I trained the two separate graph via two separate GNN model. Two separate homogeneous graph means: two graphs belong to same nodes type but from two different sources and every graph have a different set of features associated with them. To improve the performance of the GNN model, I want to fuse these two homogeneous graph along with their features. Can you suggest something related to it, is there a way to fuse the features of two homogenous graph in GNN layer? Secondly, to further improve the performance if attention is added in GNN layer for transductive node classification problem, would it be beneficial. Because, in GAT I found, attention mechanism is beneficial for performance improvement in heterophilic graphs (inductive tasks).
Beta Was this translation helpful? Give feedback.
All reactions