-
|
What exactly do the parameters |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
Beta Was this translation helpful? Give feedback.
-
|
What exactly do the parameters |
Beta Was this translation helpful? Give feedback.
-
|
Beta Was this translation helpful? Give feedback.
flowdicates the flow of message passing, which corresponds to the way nodes send messages to their neighbors. In caseflow="source_to_target", nodes will sent messages along their edges (a source node sends a message and a target node receives a message).flow="target_to_source"reverses this computation flow. This might be useful if you want to distinguish messages in an directed graph (where you also want to send messages in the reversed graph).node_dimdenotes the dimension in which you want to aggregate node features. This is set tonode_dim=-2by default, but you may want to customize it in case your node features do not have shape[num_nodes, num_features]. For example, you ma…