All Projects → HongyangGao → LGCN

HongyangGao / LGCN

Licence: other
Tensorflow Implementation of Large-Scale Learnable Graph Convolutional Networks (LGCN) KDD18

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to LGCN

darkflow
Translate darknet to tensorflow. Load trained weights, retrain/fine-tune using tensorflow, export constant graph def to mobile devices
Stars: ✭ 5,986 (+13202.22%)
Mutual labels:  convolutional-networks
purescript-d3-tagless-II
Tagless final style interpreter / wrapper for D3 in PureScript, latest of many re-writes
Stars: ✭ 28 (-37.78%)
Mutual labels:  graph
nodify
High performance and modular controls for node-based editors designed for data-binding and MVVM.
Stars: ✭ 282 (+526.67%)
Mutual labels:  graph
Paper Note
📚 记录一些自己读过的论文与笔记
Stars: ✭ 22 (-51.11%)
Mutual labels:  convolutional-networks
racket-graphviz
Library to enable using graphviz in Racket programs
Stars: ✭ 20 (-55.56%)
Mutual labels:  graph
agda
The theory of algebraic graphs formalised in Agda
Stars: ✭ 67 (+48.89%)
Mutual labels:  graph
Awesome-Graph-Neural-Networks
Paper Lists for Graph Neural Networks
Stars: ✭ 1,814 (+3931.11%)
Mutual labels:  convolutional-networks
profdump
Processes profiling output of the D compiler
Stars: ✭ 15 (-66.67%)
Mutual labels:  graph
cl-covid19
Explore COVID-19 data with Common Lisp, gnuplot, SQL and Grafana
Stars: ✭ 51 (+13.33%)
Mutual labels:  graph
graph
Generic graph library and algorithms for Racket.
Stars: ✭ 53 (+17.78%)
Mutual labels:  graph
LSUV-keras
Simple implementation of the LSUV initialization in keras
Stars: ✭ 65 (+44.44%)
Mutual labels:  convolutional-networks
trident
Make pytorch and tensorflow two become one.
Stars: ✭ 60 (+33.33%)
Mutual labels:  convolutional-networks
parallel-dfs-dag
A parallel implementation of DFS for Directed Acyclic Graphs (https://research.nvidia.com/publication/parallel-depth-first-search-directed-acyclic-graphs)
Stars: ✭ 29 (-35.56%)
Mutual labels:  graph
Tensorflow-For-Beginners
Introduction to deep learning with Tensorflow.
Stars: ✭ 55 (+22.22%)
Mutual labels:  convolutional-networks
arrowic
Quick and dirty directed graph viewer for REPL explorations.
Stars: ✭ 15 (-66.67%)
Mutual labels:  graph
towhee
Towhee is a framework that is dedicated to making neural data processing pipelines simple and fast.
Stars: ✭ 821 (+1724.44%)
Mutual labels:  convolutional-networks
ux-charts
Simple, responsive, modern Charts with zero dependencies
Stars: ✭ 22 (-51.11%)
Mutual labels:  graph
tRakt-shiny
Using trakt to graph show data and such. The on-it's-way-out incarnation of trakt.jemu.name
Stars: ✭ 17 (-62.22%)
Mutual labels:  graph
Data-structures
Data Structures in Java
Stars: ✭ 13 (-71.11%)
Mutual labels:  graph
gun-scape
GunDB Cytoscape Graph Visualizer + Live Editor
Stars: ✭ 49 (+8.89%)
Mutual labels:  graph

Large-Scale Learnable Graph Convolutional Networks(LGCN)

Created by Hongyang Gao, Zhengyang Wang and Shuiwang Ji at Washington State University.

Accepted by KDD18.

Introduction

Large-Scale Learnable Graph Convolutional Networks provide an efficient way (LGCL and LGCN) for learnable graph convolution.

Detailed information about LGCL and LGCN is provided in (https://dl.acm.org/citation.cfm?id=3219947).

Citation

If using this code, please cite our paper.

@inproceedings{gao2018large,
  title={Large-Scale Learnable Graph Convolutional Networks},
  author={Gao, Hongyang and Wang, Zhengyang and Ji, Shuiwang},
  booktitle={Proceedings of the 24th ACM SIGKDD International Conference on Knowledge Discovery \& Data Mining},
  pages={1416--1424},
  year={2018},
  organization={ACM}
}

Start training

After configure the network, we can start to train. Run

python main.py

The training results on Cora dataset will be displayed.

Results

Models Cora Citeseer Pubmed
DeepWalk 67.2% 43.2% 65.3%
Planetoid 75.7% 64.7% 77.2%
Chebyshev 81.2% 69.8% 74.4%
GCN 81.5% 70.3% 79.0%
LGCN 83.3 ± 0.5% 73.0 ± 0.6% 79.5 ± 0.2%
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].