Skip to content
Discussion options

You must be logged in to vote

There are two options to tackle this:

  1. You need to utilize a GNN tack can incorporate edge features, e.g., TransformerConv (see here).
  2. You need to first convert your edge features into node-level ones, e.g. via scatter_mean(edge_attr, edge_index[1], ...). This can potentially also be learned as part of a GNN pipeline (scatter_mean(self.mlp(edge_attr), ...))

Replies: 1 comment 7 replies

Comment options

You must be logged in to vote
7 replies
@kokifish
Comment options

@rusty1s
Comment options

@kokifish
Comment options

@downeykking
Comment options

@downeykking
Comment options

Answer selected by kokifish
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
3 participants