Replies: 1 comment 7 replies
-
I am a little confused by the question. What do you mean by transpose of edge features? Lets say your graph has a single edge [[1,2]] |
Beta Was this translation helpful? Give feedback.
7 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.
-
I generate a graph using for instance$(2, N_e)$ . Then I build edge features $e_{ij}$ between nodes nodes $i$ and $j$ . with shape $(N_e,C)$ , being $C$ the number of channels. Note that in general $e_{ij}$ is different from $e_{ji}$ .
torch_cluster.radius_graph
, so the edges have shapeGiven the edge features$e_{ij}$ , how can I get the transpose edge feature, $e_{ji}$ ? Is there any efficient way of doing that in pytorch geometric?
Beta Was this translation helpful? Give feedback.
All reactions