Implementation of a GCN
Explore the implementation of a simple 1-hop Graph Convolutional Network layer using PyTorch. Understand how to build, train, and evaluate this network on the MUTAG dataset. Analyze training results while learning about graph batching, adjacency matrices, and readout layers to effectively handle graph data for classification.
We'll cover the following...
We'll cover the following...
Implementing a 1-hop GCN layer in Pytorch
For this tutorial, we will train a simple 1-hop ...