Skip to content

Commit bdbd6f7

Browse files
committed
update usage and requirements
1 parent 9e7977e commit bdbd6f7

File tree

1 file changed

+33
-2
lines changed

1 file changed

+33
-2
lines changed

README.md

+33-2
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,36 @@
22
## Description
33
This is the repository for the IJCAI-19 paper [Hierarchical Graph Convolutional Networks for Semi-supervised Node Classification](https://arxiv.org/pdf/1902.06667.pdf).
44

5-
## Stay Tuned!
6-
We will release all relevant codes and datasets ASAP!
5+
## Requirements
6+
7+
- Tensorflow (1.9.0)
8+
- networkx
9+
10+
## Usage
11+
12+
You can conduct node classification experiments on citation network (Cora, Citeseer or Pubmed) with the following commands:
13+
14+
```bash
15+
python train.py --dataset cora --epochs 60 --early_stopping 1000 --coarsen_level 4 --dropout 0.85 --weight_decay 7e-4 --hidden 32 --node_wgt_embed_dim 8 --seed1 156 --seed2 136
16+
```
17+
18+
```bash
19+
python train.py --dataset citeseer --epochs 200 --early_stopping 60 --coarsen_level 4 --dropout 0.85 --weight_decay 7e-4 --hidden 30 --node_wgt_embed_dim 15 --seed1 156 --seed2 156
20+
```
21+
22+
```bash
23+
python train.py --dataset pubmed --epochs 250 --early_stopping 1000 --coarsen_level 4 --dropout 0.85 --weight_decay 7e-4 --hidden 30 --node_wgt_embed_dim 8 --seed1 156 --seed2 136
24+
```
25+
26+
## Cite
27+
Please cite our paper if you use this code in your own work:
28+
29+
```
30+
@inproceedings{hgcn_ijcai19,
31+
title = {Hierarchical Graph Convolutional Networks for Semi-supervised Node Classification},
32+
author = {Fenyu Hu and Yanqiao Zhu and Shu Wu and Liang Wang and Tieniu Tan},
33+
booktitle = {Proceedings of the Twenty-Eighth International Joint Conference on Artificial Intelligence, (IJCAI)},
34+
year = {2019},
35+
url = {https://arxiv.org/abs/1902.06667}
36+
}
37+
```

0 commit comments

Comments
 (0)