-
Hi, I am new to geometrics, I need your help with confusion that may be stupid but important to me. I was wondering when I give GCN.forward() an input like below,
How will GCNConv( x, edge_index) process the duplicate edges in edge_index? Merge them or just drop the duplicates?
OR
? Thank you very much ! |
Beta Was this translation helpful? Give feedback.
Answered by
rusty1s
Mar 24, 2022
Replies: 1 comment 1 reply
-
We will not remove duplicate edges, but instead interpret them as two edges. As such, it will be treated as
|
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
ZRH0308
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
We will not remove duplicate edges, but instead interpret them as two edges. As such, it will be treated as