README.md 503 Bytes
Newer Older
1
2
3
Graph Convolutional Networks (GCN)
============

Mufei Li's avatar
Mufei Li committed
4
- Paper link: [https://arxiv.org/abs/1609.02907](https://arxiv.org/abs/1609.02907)
5
- Author's code repo: [https://github.com/tkipf/gcn](https://github.com/tkipf/gcn).
6

7
How to run
8
-------
9

10
11
12
### DGL built-in GraphConv module

Run with the following (available dataset: "cora", "citeseer", "pubmed")
13
```bash
14
python3 train.py --dataset cora
15
16
```

17
18
19
20
21
22
Summary
-------
* cora: ~0.810 (paper: 0.815)
* citeseer: ~0.707 (paper: 0.703)
* pubmed: ~0.792 (paper: 0.790)