Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

Convolutional Neural Networks on Graphs with Fast Localized Spectral Filtering

License

NotificationsYou must be signed in to change notification settings

mdeff/cnn_graph

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

The code in this repository implements an efficient generalization of thepopular Convolutional Neural Networks (CNNs) to arbitrary graphs, presented inour paper:

Michaël Defferrard, Xavier Bresson, Pierre Vandergheynst,Convolutional NeuralNetworks on Graphs with Fast Localized Spectral Filtering, NeuralInformation Processing Systems (NIPS), 2016.

Additional material:

There is also implementations of the filters used in:

Installation

  1. Clone this repository.

    git clone https://github.com/mdeff/cnn_graphcd cnn_graph
  2. Install the dependencies. The code should run with TensorFlow 1.0 and newer.

    pip install -r requirements.txt# or make install
  3. Play with the Jupyter notebooks.

    jupyter notebook

Reproducing our results

Run all the notebooks to reproduce the experiments onMNIST and20NEWS presented inthe paper.

cd nips2016make

Using the model

To use our graph ConvNet on your data, you need:

  1. a data matrix where each row is a sample and each column is a feature,
  2. a target vector,
  3. optionally, an adjacency matrix which encodes the structure as a graph.

See theusage notebook for a simple example with fabricated data.Please get in touch if you are unsure about applying the model to a differentsetting.

License & co

The code in this repository is released under the terms of theMIT license.Please cite ourpaper 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},}

[8]ページ先頭

©2009-2025 Movatter.jp