项目文件夹

文件
xiang song(charlie.song) f3f35098e6 Fix (#2051)
Co-authored-by: Ubuntu <ubuntu@ip-172-31-63-129.ec2.internal>
2020-08-19 08:45:29 +08:00

925 B

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

Dependencies

  • MXNET 1.5+
  • 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")

DGLBACKEND=mxnet python3 appnp.py --dataset cora --gpu 0
  • cora: 0.8370 (paper: 0.850)
  • citeseer: 0.713 (paper: 0.757)
  • pubmed: 0.798 (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)