-
Hello, does PyG support graph-level tasks, such as graph classification, which means that the shape of the input training data should be (batch_size, num_nodes, num_features). As is common practice in DNNs, the batch_size is num_graphs instead of num_nodes. If so, can you give me a link to an example? |
Beta Was this translation helpful? Give feedback.
Answered by
rusty1s
May 24, 2022
Replies: 1 comment
-
Yes, PyG supports graph-level tasks, but the batching is a little bit different from traditional neural networks, see here and here. Here is a practical example of a graph-level classification task. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
hellomuyi
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yes, PyG supports graph-level tasks, but the batching is a little bit different from traditional neural networks, see here and here. Here is a practical example of a graph-level classification task.