Skip to content
This repository was archived by the owner on Feb 21, 2025. It is now read-only.

Files

Latest commit

a9f2acf · Sep 26, 2022

History

History
This branch is 1690 commits behind dmlc/dgl:master.

sgc

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Nov 3, 2019
Sep 26, 2022

Simple Graph Convolution (SGC)

Dependencies

  • MXNET 1.5+
  • requests

bash pip install torch requests

Codes

The folder contains an implementation of SGC (sgc.py).

Results

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

DGLBACKEND=mxnet python3 sgc.py --dataset cora --gpu 0
DGLBACKEND=mxnet python3 sgc.py --dataset citeseer --weight-decay 5e-5 --n-epochs 150 --bias --gpu 0
DGLBACKEND=mxnet python3 sgc.py --dataset pubmed --weight-decay 5e-5 --bias --gpu 0

On NVIDIA V100

  • cora: 0.818 (paper: 0.810)
  • citeseer: 0.725 (paper: 0.719)
  • pubmed: 0.788 (paper: 0.789)