Aveek-Saha / Graph-Conv-Net

A TensorFlow 2 implementation of Graph Convolutional Networks (GCN)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Graph Convolutional Networks

A TensorFlow 2 implementation of Graph Convolutional Networks for classification of nodes from the paper, Thomas N. Kipf, Max Welling, Semi-Supervised Classification with Graph Convolutional Networks (ICLR 2017)

This is my attempt at trying to understand and recreate the neural network from from the paper. You can find the official implementation here: https://github.com/tkipf/gcn

Requirements

  • tensorflow 2
  • networkx
  • numpy
  • scikit-learn

Run

To train and test the network with the CORA dataset.

python train.py

Cite

Please cite the original paper if you use this code in your own work:

@inproceedings{kipf2017semi,
  title={Semi-Supervised Classification with Graph Convolutional Networks},
  author={Kipf, Thomas N. and Welling, Max},
  booktitle={International Conference on Learning Representations (ICLR)},
  year={2017}
}

About

A TensorFlow 2 implementation of Graph Convolutional Networks (GCN)

License:MIT License


Languages

Language:Python 100.0%