"examples/devops-engineer/Modelfile" did not exist on "4cb42ca55e718777c16b2c66340b0d5c3405cca6"
README.md 923 Bytes
Newer Older
1
2
3
4
Graph Attention Networks (GAT)
============

- Paper link: [https://arxiv.org/abs/1710.10903](https://arxiv.org/abs/1710.10903)
5
- Author's code repo (tensorflow implementation):
6
  [https://github.com/PetarV-/GAT](https://github.com/PetarV-/GAT).
7
8
- Popular pytorch implementation:
  [https://github.com/Diego999/pyGAT](https://github.com/Diego999/pyGAT).
9

10
How to run
11
-------
12

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

18
Run with the following for multilabel classification with PPI dataset
19
```bash
20
python3 train_ppi.py
21
22
```

23
> **_NOTE:_**  Users may occasionally run into low accuracy issue (e.g., test accuracy < 0.8) due to overfitting. This can be resolved by adding Early Stopping or reducing maximum number of training epochs.
24

25
Summary
26
-------
27
28
29
30
* cora: ~0.821
* citeseer: ~0.710
* pubmed: ~0.780
* ppi: ~0.9744