All Projects → zhao-tong → GAug

zhao-tong / GAug

Licence: MIT license
AAAI'21: Data Augmentation for Graph Neural Networks

Programming Languages

python
139335 projects - #7 most used programming language
shell
77523 projects

Projects that are alternatives of or similar to GAug

awesome-graph-self-supervised-learning
Awesome Graph Self-Supervised Learning
Stars: ✭ 805 (+479.14%)
Mutual labels:  data-augmentation, graph-neural-networks
mdgrad
Pytorch differentiable molecular dynamics
Stars: ✭ 127 (-8.63%)
Mutual labels:  graph-neural-networks
visual-compatibility
Context-Aware Visual Compatibility Prediction (https://arxiv.org/abs/1902.03646)
Stars: ✭ 92 (-33.81%)
Mutual labels:  graph-neural-networks
Entity-Graph-VLN
Code of the NeurIPS 2021 paper: Language and Visual Entity Relationship Graph for Agent Navigation
Stars: ✭ 34 (-75.54%)
Mutual labels:  graph-neural-networks
Learning-From-Rules
Implementation of experiments in paper "Learning from Rules Generalizing Labeled Exemplars" to appear in ICLR2020 (https://openreview.net/forum?id=SkeuexBtDr)
Stars: ✭ 46 (-66.91%)
Mutual labels:  data-augmentation
MobilePose
Light-weight Single Person Pose Estimator
Stars: ✭ 588 (+323.02%)
Mutual labels:  data-augmentation
ccgl
TKDE 22. CCCL: Contrastive Cascade Graph Learning.
Stars: ✭ 20 (-85.61%)
Mutual labels:  data-augmentation
KitanaQA
KitanaQA: Adversarial training and data augmentation for neural question-answering models
Stars: ✭ 58 (-58.27%)
Mutual labels:  data-augmentation
SiGAT
source code for signed graph attention networks (ICANN2019) & SDGNN (AAAI2021)
Stars: ✭ 37 (-73.38%)
Mutual labels:  graph-neural-networks
ASAP
AAAI 2020 - ASAP: Adaptive Structure Aware Pooling for Learning Hierarchical Graph Representations
Stars: ✭ 83 (-40.29%)
Mutual labels:  graph-neural-networks
EPCDepth
[ICCV 2021] Excavating the Potential Capacity of Self-Supervised Monocular Depth Estimation
Stars: ✭ 105 (-24.46%)
Mutual labels:  data-augmentation
Social-Recommendation
Summary of social recommendation papers and codes
Stars: ✭ 143 (+2.88%)
Mutual labels:  graph-neural-networks
coursera-gan-specialization
Programming assignments and quizzes from all courses within the GANs specialization offered by deeplearning.ai
Stars: ✭ 277 (+99.28%)
Mutual labels:  data-augmentation
EgoCNN
Code for "Distributed, Egocentric Representations of Graphs for Detecting Critical Structures" (ICML 2019)
Stars: ✭ 16 (-88.49%)
Mutual labels:  graph-neural-networks
BGCN
A Tensorflow implementation of "Bayesian Graph Convolutional Neural Networks" (AAAI 2019).
Stars: ✭ 129 (-7.19%)
Mutual labels:  graph-neural-networks
AC-VRNN
PyTorch code for CVIU paper "AC-VRNN: Attentive Conditional-VRNN for Multi-Future Trajectory Prediction"
Stars: ✭ 21 (-84.89%)
Mutual labels:  graph-neural-networks
Introduction-to-Deep-Learning-and-Neural-Networks-Course
Code snippets and solutions for the Introduction to Deep Learning and Neural Networks Course hosted in educative.io
Stars: ✭ 33 (-76.26%)
Mutual labels:  graph-neural-networks
manifold mixup
Tensorflow implementation of the Manifold Mixup machine learning research paper
Stars: ✭ 24 (-82.73%)
Mutual labels:  data-augmentation
SubGNN
Subgraph Neural Networks (NeurIPS 2020)
Stars: ✭ 136 (-2.16%)
Mutual labels:  graph-neural-networks
pyg autoscale
Implementation of "GNNAutoScale: Scalable and Expressive Graph Neural Networks via Historical Embeddings" in PyTorch
Stars: ✭ 136 (-2.16%)
Mutual labels:  graph-neural-networks

Data Augmentation for Graph Neural Networks

This repository contains the source code for the AAAI'2021 paper:

Data Augmentation for Graph Neural Networks

by Tong Zhao ([email protected]), Yozen Liu, Leonardo Neves, Oliver Woodford, Meng Jiang, and Neil Shah.

Requirements

This code package was developed and tested with Python 3.7.6. Make sure all dependencies specified in the requirements.txt file are satisfied before running the model. This can be achieved by

pip install -r requirements.txt

Usage

The scripts for hyperparameter search with Optuna are optuna_[method].py.

All the parameters are included in best_parameters.json. Results can be reproduced with the scripts train_[method].py, which will automatically load the parameters. For example, to reproduce the result of GAugO with GCN on Cora, you can simply run:

python train_GAugO.py --dataset cora --gnn gcn --gpu 0

Data

The format of data files are described in detail in the file data/README. Due to file size limit, for GAugM, only the edge_probabilities of Cora is provided. Please find the all edge_probabilities files at https://tinyurl.com/gaug-data. The VGAE implementation I used for generating these edge_probabilities are also provided under the folder vgae/.

Cite

If you find this repository useful in your research, please cite our paper:

@inproceedings{zhao2021data,
  title={Data Augmentation for Graph Neural Networks},
  author={Zhao, Tong and Liu, Yozen and Neves, Leonardo and Woodford, Oliver and Jiang, Meng and Shah, Neil},
  booktitle={Proceedings of the AAAI Conference on Artificial Intelligence},
  volume={35},
  number={12},
  pages={11015--11023},
  year={2021}
}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].