Use of nn.models.GIN
for Graph Classification
#9114
-
It is great to see that the GIN model is implemented natively in PyTorch Geometric. As I understand it however, this implementation cannot be used for graph classification as described in the original publication [1] because that would require the output of all GNN layers including the input layer (cf. Eq. 4.2). This is because Is that correct or am I missing something? If this is correct, does that mean the best way to use [1] Xu, Keyulu, et al. "How powerful are graph neural networks?." arXiv preprint arXiv:1810.00826 (2018). https://arxiv.org/abs/1810.00826 |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
You can well use GIN for graph classification. Here is an example. |
Beta Was this translation helpful? Give feedback.
You can well use GIN for graph classification. Here is an example.