Can PyG do temporal graph classification? #4291
-
I'm a beginner of using PyG and the task may be a bit advanced, but temporal graph classification seems to be a solution to a task in my field (bioinformatics). May I know if PyG can do temporal graph classification for the current time point? i.e. multiple temporal (dynamic) graphs with each associated with a label, and I want to ingest them into PyG to classify each temporal graph. I wonder if a code example/ snippet/ tutorial on this task is available. Thanks in advance. 👍 |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
We are currently working on better temporal graph support via It might be also worth it to check out PyTorch Geometric Temporal :) |
Beta Was this translation helpful? Give feedback.
We are currently working on better temporal graph support via
data.TemporalData
andloader.TemporalDataLoader
. Currently, we provide only a single temporal GNN model: the Temporal Graph Network (TGN
), see here for an example.It might be also worth it to check out PyTorch Geometric Temporal :)