Home

Awesome

Measuring and Improving the Use of Graph Information in Graph Neural Networks

Authors: Yifan Hou, Jian Zhang, James Cheng, Kaili Ma , Richard T. B. Ma, Hongzhi Chen, Ming-Chang Yang

Overview

Graph neural networks (GNNs) have been widely used for representation learning on graph data. However, there is limited understanding on how much performance GNNs actually gain from graph data.

This paper introduces a context-surrounding GNN framework and proposes two smoothness metrics to measure the quantity and quality of information obtained from graph data. A new, improved GNN model, called CS-GNN, is then devised to improve the use of graph information based on the smoothness values of a graph. CS-GNN is shown to achieve better performance than existing methods in different types of real graphs.

Please see the paper for more details. The processed BGP data can be found here.

Note: If you make use of this code, the CS-GNN model or the BGP data in your work, please cite the following paper:

@inproceedings{
hou2020measuring,
title={Measuring and Improving the Use of Graph Information in Graph Neural Networks},
author={Yifan Hou and Jian Zhang and James Cheng and Kaili Ma and Richard T. B. Ma and Hongzhi Chen and Ming-Chang Yang},
booktitle={International Conference on Learning Representations},
year={2020},
url={https://openreview.net/forum?id=rkeIIkHKvS}
}

Requirements

Recent versions of pytorch, numpy, sklearn, tqdm, networkx, pygsp, and pandas are required. You can install those required packages using the following command:

$ pip install -r requirements.txt

Deep Graph Library (DGL) is also required. You can install it with the tutorial in dgl.

How to run

You can run the .py file directly, using the following command to run the model:

$ python ./src/train.py

You may refer ./smoothness/smoothness.py for smoothness computing.

Input format

Academic Paper

[ICLR 2020] Measuring and Improving the Use of Graph Information in Graph Neural Networks, Yifan Hou, Jian Zhang, James Cheng, Kaili Ma, Richard T. B. Ma, Hongzhi Chen, Ming-Chang Yang.

Acknowledgement

We owe many thanks to Ng Hong Wei for cleaning the BGP data.