The code in this repository implements an efficient generalization of the popular Convolutional Neural Networks (CNNs) to arbitrary graphs, presented in our paper:
Michaël Defferrard, Xavier Bresson, Pierre Vandergheynst, Convolutional Neural Networks on Graphs with Fast Localized Spectral Filtering, Neural Information Processing Systems (NIPS), 2016.
Additional material:
- NIPS2016 spotlight video, 2016-11-22.
- Deep Learning on Graphs, a lecture for EPFL's master course A Network Tour of Data Science, 2016-12-21.
- Deep Learning on Graphs, an invited talk at the Deep Learning on Irregular Domains workshop of BMVC, 2017-09-17.
There is also implementations of the filters used in:
- Joan Bruna, Wojciech Zaremba, Arthur Szlam, Yann LeCun, Spectral Networks and Locally Connected Networks on Graphs, International Conference on Learning Representations (ICLR), 2014.
- Mikael Henaff, Joan Bruna and Yann LeCun, Deep Convolutional Networks on Graph-Structured Data, arXiv, 2015.
-
Clone this repository.
git clone https://github.com/mdeff/cnn_graph cd cnn_graph
-
Install the dependencies. The code should run with TensorFlow 1.0 and newer.
pip install -r requirements.txt # or make install
-
Play with the Jupyter notebooks.
jupyter notebook
Run all the notebooks to reproduce the experiments on MNIST and 20NEWS presented in the paper.
cd nips2016
make
To use our graph ConvNet on your data, you need:
- a data matrix where each row is a sample and each column is a feature,
- a target vector,
- optionally, an adjacency matrix which encodes the structure as a graph.
See the usage notebook for a simple example with fabricated data. Please get in touch if you are unsure about applying the model to a different setting.
The code in this repository is released under the terms of the MIT license. Please cite our paper if you use it.
@inproceedings{cnn_graph,
title = {Convolutional Neural Networks on Graphs with Fast Localized Spectral Filtering},
author = {Defferrard, Micha\"el and Bresson, Xavier and Vandergheynst, Pierre},
booktitle = {Advances in Neural Information Processing Systems},
year = {2016},
url = {https://arxiv.org/abs/1606.09375},
}