An open API service indexing awesome lists of open source software.

https://github.com/kimmeen/gcn

A PyTorch implementation of the (GCN) paper https://arxiv.org/abs/1609.02907
https://github.com/kimmeen/gcn

Last synced: 2 months ago
JSON representation

A PyTorch implementation of the (GCN) paper https://arxiv.org/abs/1609.02907

Awesome Lists containing this project

README

        

# Graph Convolutional Networks (GCN)

A PyTorch implementation of the paper https://arxiv.org/abs/1609.02907

### Codes

The folder contains a GCN implementation based on DGL.

Three training scripts are available to run on Cora, Citeseer, and Pubmed.

### Results

Run with following:

~~~bash
python train_cora.py
~~~

```
* Cora: ~0.823 (paper: 0.815)
* Citeseer: ~0.705 (paper: 0.703)
* Pubmed: ~0.800 (paper: 0.790)
```