multi-graph multi-adjacency matrix #4691
DuanhaoranCC
started this conversation in
General
Replies: 1 comment 3 replies
-
I think the issue is that you are not decreasing the values of the edge_index = data.edge_index[:, data.batch[data.edge_index[0]] == 0] - data.ptr[1]
edge_index = data.edge_index[:, data.batch[data.edge_index[0]] == 1] - data.ptr[2] Let me know if this fixes your issues :) |
Beta Was this translation helpful? Give feedback.
3 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.
-
I currently have a requirement to get the adjacency matrix of each graph, and then form it into a large matrix, but I found that the dimensions are not uniform, where is the error?(7452 not = 6860)
Beta Was this translation helpful? Give feedback.
All reactions