Graph construction problem: a combination of multigraph and heterogeneous graph #9010
Answered
by
rusty1s
RENEK-bool
asked this question in
Q&A
-
Hello, I am currently trying to build a graph with two types of edges, and sometimes there may be two edges between a pair of nodes, I wonder whether pytorch geometric supports such modeling, and is there any suitable model to train? This seems to be a combination of multigraph and heterogeneous graph. |
Beta Was this translation helpful? Give feedback.
Answered by
rusty1s
Mar 7, 2024
Replies: 1 comment
-
PyG supports both multi-graphs and heterogeneous graphs. If you have duplicated edges, message passing would send the information from a neighbor twice. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
RENEK-bool
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
PyG supports both multi-graphs and heterogeneous graphs. If you have duplicated edges, message passing would send the information from a neighbor twice.