-
I'd like to predict delay time between several cities using GNN. Several cities can be linked each other so we can have large directional graph. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I think this would be more of an edge regression problem, since I assume you do not necessarily predict the existence of a link, but more of a regression value between two cities. I think this should be well implementable within the PyG framework, where you can use a GNN layer that can incorporate multi-dimensional edge features (e.g., |
Beta Was this translation helpful? Give feedback.
I think this would be more of an edge regression problem, since I assume you do not necessarily predict the existence of a link, but more of a regression value between two cities. I think this should be well implementable within the PyG framework, where you can use a GNN layer that can incorporate multi-dimensional edge features (e.g.,
SplineConv,
TransformerConv`, etc), and then obtain a node embedding for source and destination city to make a final prediction for the link between the two (using some kind of MLP on top of concatenated source and destination node embeddings).