GithubHelp home page GithubHelp logo

edisonleeeee / graphgallery Goto Github PK

View Code? Open in Web Editor NEW
455.0 12.0 62.0 9.79 MB

GraphGallery is a gallery for benchmarking Graph Neural Networks, From InplusLab.

License: MIT License

Python 99.98% Shell 0.02%
graph-neural-networks models graph geometric-deep-learning pytorch graphgallery adversarial-machine-learning dgl pyg

graphgallery's Introduction

banner

PyTorch is all you need!

Python pytorch pypi license

GraphGallery

GraphGallery is a gallery for benchmarking Graph Neural Networks (GNNs) based on pure PyTorch backend. Alteratively, Pytorch Geometric (PyG) and Deep Graph Library (DGL) backend are also available in GraphGallery to facilitate your implementations.

πŸ’¨ NEWS

  • November 20, 2021: We now no longer support TensorFlow backend.
  • November 20, 2021: The module graphgallery.attack is deprecated, users may refer to GraphWar for more information.

πŸš€ Installation

Please make sure you have installed PyTorch. Also, Pytorch Geometric (PyG) and Deep Graph Library (DGL) are alternative choices.

Install from source:

# Recommended
git clone https://github.com/EdisonLeeeee/GraphGallery.git && cd GraphGallery
pip install -e . --verbose

where -e means "editable" mode so you don't have to reinstall every time you make changes.

NOTE: GraphGallery is a frequently updated package and DO NOT install GraphGallery with pip, we're currently working on releasing a binary distribution on PyPI, stay tuned!

πŸ€– Implementations

In detail, the following methods are currently implemented:

Node Classification

Method Author Paper PyTorch PyG DGL
ChebyNet MichaΓ«l Defferrard et al. Convolutional Neural Networks on Graphs with Fast Localized Spectral Filtering (NeurIPS'16) βœ”οΈ
GCN Thomas N. Kipf et al. Semi-Supervised Classification with Graph Convolutional Networks (ICLR'17) βœ”οΈ βœ”οΈ βœ”οΈ
GraphSAGE William L. Hamilton et al. Inductive Representation Learning on Large Graphs (NeurIPS'17) βœ”οΈ βœ”οΈ
FastGCN Jie Chen et al. FastGCN: Fast Learning with Graph Convolutional Networks via Importance Sampling (ICLR'18) βœ”οΈ
GAT Petar VeličkoviΔ‡ et al. Graph Attention Networks (ICLR'18) βœ”οΈ βœ”οΈ βœ”οΈ
SGC Felix Wu et al. Simplifying Graph Convolutional Networks (ICLR'19) βœ”οΈ βœ”οΈ βœ”οΈ
GWNN Bingbing Xu et al. Graph Wavelet Neural Network (ICLR'19) βœ”οΈ
ClusterGCN Wei-Lin Chiang et al. Cluster-GCN: An Efficient Algorithm for Training Deep and Large Graph Convolutional Networks (KDD'19) βœ”οΈ
DAGNN Meng Liu et al. Towards Deeper Graph Neural Networks (KDD'20) βœ”οΈ βœ”οΈ
GDC Johannes Klicpera et al. Diffusion Improves Graph Learning (NeurIPS'19) βœ”οΈ
TAGCN Jian Du et al. Topology Adaptive Graph Convolutional Networks (arxiv'17) βœ”οΈ
APPNP, PPNP Johannes Klicpera et al. Predict then Propagate: Graph Neural Networks meet Personalized PageRank (ICLR'19) βœ”οΈ βœ”οΈ
PDN Benedek Rozemberczki et al. Pathfinder Discovery Networks for Neural Message Passing (ICLR'21) βœ”οΈ
SSGC Zhu et al. Simple Spectral Graph Convolution (ICLR'21) βœ”οΈ
AGNN Kiran K. Thekumparampil al. Attention-based Graph Neural Network for semi-supervised learning (ICLR'18 openreview) βœ”οΈ
ARMA Bianchi et al. Graph Neural Networks with convolutional ARMA filters (Arxiv'19)
GraphMLP Yang Hu et al. Graph-MLP: Node Classification without Message Passing in Graph (Arxiv'21) βœ”οΈ
LGC, EGC, hLGC Luca Pasa et al. Simple Graph Convolutional Networks (Arxiv'21) βœ”οΈ
GRAND Wenzheng Feng et al. Graph Random Neural Network for Semi-Supervised Learning on Graphs (NeurIPS'20) βœ”οΈ
AlaGCN, AlaGAT Yiqing Xie et al. When Do GNNs Work: Understanding and Improving Neighborhood Aggregation (IJCAI'20) βœ”οΈ
JKNet Keyulu Xu et al. Representation Learning on Graphs with Jumping Knowledge Networks (ICML'18) βœ”οΈ
MixHop Sami Abu-El-Haija et al. MixHop: Higher-Order Graph Convolutional Architecturesvia Sparsified Neighborhood Mixing (ICML'19) βœ”οΈ
DropEdge Yu Rong et al. DropEdge: Towards Deep Graph Convolutional Networks on Node Classification (ICML'20) βœ”οΈ
Node2Grids Dalong Yang et al. Node2Grids: A Cost-Efficient Uncoupled Training Framework for Large-Scale Graph Learning (CIKM'21) βœ”οΈ
RobustGCN Dingyuan Zhu et al. Robust Graph Convolutional Networks Against Adversarial Attacks (KDD'19) βœ”οΈ βœ”οΈ
SBVAT, OBVAT Zhijie Deng et al. Batch Virtual Adversarial Training for Graph Convolutional Networks (ICML'19) βœ”οΈ
SimPGCN Wei Jin et al. Node Similarity Preserving Graph Convolutional Networks (WSDM'21) βœ”οΈ
GraphVAT Fuli Feng et al. Graph Adversarial Training: Dynamically Regularizing Based on Graph Structure (TKDE'19) βœ”οΈ
LATGCN Hongwei Jin et al. Latent Adversarial Training of Graph Convolution Networks (ICML@LRGSD'19) βœ”οΈ
DGAT Weibo Hu et al. Robust graph convolutional networks with directional graph adversarial training (Applied Intelligence'19) βœ”οΈ
MedianGCN, TrimmedGCN Liang Chen et al. Understanding Structural Vulnerability in Graph Convolutional Networks βœ”οΈ βœ”οΈ βœ”οΈ

Graph Purification

The graph purification methods are universal for all models, just specify:

graph_transform="purification_method"

so, here we only give the examples of GCN with purification methods, other models should work.

Method Author Paper
GCN-Jaccard Huijun Wu et al. Adversarial Examples on Graph Data: Deep Insights into Attack and Defense (IJCAI'19)
GCN-SVD Negin Entezari et al. All You Need Is Low (Rank): Defending Against Adversarial Attacks on Graphs (WSDM'20)

LinkPrediction

Method Author Paper PyTorch PyG DGL
GAE, VGAE Thomas N. Kipf et al. Variational Graph Auto-Encoders (NeuIPS'16) βœ”οΈ βœ”οΈ

Node Embedding

The following methods are framework-agnostic.

Method Author Paper
Deepwalk Bryan Perozzi et al. DeepWalk: Online Learning of Social Representations (KDD'14)
Node2vec Aditya Grover and Jure Leskovec node2vec: Scalable Feature Learning for Networks (KDD'16)
Node2vec+ Renming Liu et al. Accurately Modeling Biased Random Walks on Weighted Graphs Using Node2vec+
BANE Hong Yang et al. Binarized attributed network embedding (ICDM'18)

⚑ Quick Start

Datasets

  • Planetoid: a collection of widely used benchmark datasets in graph learning tasks, including 'cora', 'citeseerr', 'pubmed' and 'nell' datasets.
  • NPZDataset: a collection of graph datasets stored with numpy .npz format.

you can simply run dataset.available_datasets() to see the available datasets, e.g.,:

from graphgallery.datasets import Planetoid
print(Planetoid.available_datasets())

more details please refer to GraphData.

Example of GCN (Node Classification Task)

It takes just a few lines of code.

import torch
import graphgallery
from graphgallery.datasets import Planetoid
from graphgallery.gallery import callbacks

data = Planetoid('cora', root="~/GraphData/datasets/", verbose=True)
graph = data.graph
splits = data.split_nodes()
device = torch.device('cuda') if torch.cuda.is_available() else torch.device('cpu')

graphgallery.set_backend("torch")
from graphgallery.gallery.nodeclas import GCN

trainer = GCN(device=device, seed=123).setup_graph(graph, feat_transform="normalize_feat").build()
cb = callbacks.ModelCheckpoint('model.pth', monitor='val_accuracy')
trainer.fit(splits.train_nodes, splits.val_nodes, verbose=1, callbacks=[cb])
results = trainer.evaluate(splits.test_nodes)
print(f'Test loss {results.loss:.5}, Test accuracy {results.accuracy:.2%}')

Example of GAE (Link Prediction Task)

import torch
import graphgallery
from graphgallery.gallery import callbacks
from graphgallery.datasets import Planetoid

data = Planetoid('cora', root="~/GraphData/datasets/", verbose=True)
graph = data.graph
splits = data.split_edges(random_state=15)
device = torch.device('cuda') if torch.cuda.is_available() else torch.device('cpu')

graphgallery.set_backend("torch")

from graphgallery.gallery.linkpred import GAE
trainer = GAE(device=device, seed=123).setup_graph(graph).build()
cb = callbacks.ModelCheckpoint('model.pth', monitor='val_ap')
trainer.fit(splits.train_pos_edge_index,
            val_data=(splits.val_pos_edge_index, splits.val_neg_edge_index), 
            verbose=1, callbacks=[cb])
results = trainer.evaluate((splits.test_pos_edge_index, splits.test_neg_edge_index))
print(results)

If you have any troubles, you can simply run trainer.help() for more information.

Other Backends

>>> import graphgallery
# Default: PyTorch backend
>>> graphgallery.backend()
PyTorch 1.9.0+cu111 Backend
# Switch to PyTorch Geometric backend
>>> graphgallery.set_backend("pyg")
# Switch to DGL PyTorch backend
>>> graphgallery.set_backend("dgl")
# Switch to PyTorch backend
>>> graphgallery.set_backend("th") # "torch", "pytorch"

But your codes don't even need to change.

❓ How to add your datasets

This is motivated by gnn-benchmark

from graphgallery.data import Graph

# Load the adjacency matrix A, attribute (feature) matrix X and labels vector y
# A - scipy.sparse.csr_matrix of shape [num_nodes, num_nodes]
# X - scipy.sparse.csr_matrix or numpy.ndarray of shape [num_nodes, num_feats]
# y - numpy.ndarray of shape [num_nodes]

mydataset = Graph(adj_matrix=A, attr_matrix=X, label=y)
# save dataset
mydataset.to_npz('path/to/mydataset.npz')
# load dataset
mydataset = Graph.from_npz('path/to/mydataset.npz')

⭐ Road Map

  • Add PyTorch trainers support
  • Add other frameworks (PyG and DGL) support
  • set tensorflow as optional dependency when using graphgallery
  • Add more GNN trainers
  • Support for more tasks, e.g., graph Classification and link prediction
  • Support for more types of graphs, e.g., Heterogeneous graph
  • Add Docstrings and Documentation (Building)
  • Comprehensive tutorials

❓ FAQ

Please fell free to contact me if you have any troubles.

😘 Acknowledgement

This project is motivated by Pytorch Geometric, Stellargraph and DGL, etc., and the original implementations of the authors, thanks for their excellent works!

Cite

Please cite our paper (and the respective papers of the methods used) if you use this code in your own work:

@inproceedings{li2021graphgallery,
author = {Jintang Li and Kun Xu and Liang Chen and Zibin Zheng and Xiao Liu},
booktitle = {2021 IEEE/ACM 43rd International Conference on Software Engineering: Companion Proceedings (ICSE-Companion)},
title = {GraphGallery: A Platform for Fast Benchmarking and Easy Development of Graph Neural Networks Based Intelligent Software},
year = {2021},
pages = {13-16},
publisher = {IEEE Computer Society},
address = {Los Alamitos, CA, USA},
}

graphgallery's People

Contributors

aria461863631 avatar dependabot[bot] avatar edisonleeeee avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

graphgallery's Issues

Support for custom dataset

Thanks for rolling out such a nice useful library.
Kindly share the steps on how to use this library for custom datasets.
For example, cora dataset has 2 files where one is with graph edge creations and another one is with full of features. By using these files, how would we create custom dataset. (Similar to Stellargraph).

jaccard_purification didn't work?

In cora, cora_ml, citeseer and pubmed dataset, although I used jaccard_purification in GCN, output was exactly the same as vanilla GCN.

How to match the Pytorch version

Thanks for rolling out such a nice useful library.
But when I used it , I found that the latest version of this library didn't match the Pytorch version which I had installed.
Could you please give the common version corresponding?
Thank you.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.