项目文件夹

文件
xiang song(charlie.song) b347590a37 [Dataset] Citation graph (#1902)
* citation graph

* GCN example use new citatoin dataset

* mxnet gat

* triger

* Fix

* Fix gat

* fix

* Fix tensorflow dgi

* Fix appnp, graphsage for mxnet

* fix monet and sgc for mxnet

* Fix tagcn

* update sgc, appnp

Co-authored-by: Ubuntu <ubuntu@ip-172-31-51-214.ec2.internal>
2020-08-01 19:25:50 +08:00
..
2019-05-23 10:38:05 +08:00
2020-08-01 19:25:50 +08:00

Predict then Propagate: Graph Neural Networks meet Personalized PageRank (APPNP)

Dependencies

  • PyTorch 0.4.1+
  • requests

bash pip install torch requests

Code

The folder contains an implementation of APPNP (appnp.py).

Results

Run with following (available dataset: "cora", "citeseer", "pubmed")

python3 train.py --dataset cora --gpu 0
  • cora: 0.8370 (paper: 0.850)
  • citeseer: 0.715 (paper: 0.757)
  • pubmed: 0.793 (paper: 0.797)

Experiments were done on dgl datasets (GCN settings) which are different from those used in the original implementation. (discrepancies are detailed in experimental section of the original paper)