-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Doc] Add readme to mxnet gat (dmlc#300)
* readme * Update and rename README to README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md
- Loading branch information
1 parent
f8811c7
commit 632d598
Showing
2 changed files
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
Graph Attention Networks (GAT) | ||
============ | ||
|
||
- Paper link: [https://arxiv.org/abs/1710.10903](https://arxiv.org/abs/1710.10903) | ||
- Author's code repo: | ||
[https://github.com/PetarV-/GAT](https://github.com/PetarV-/GAT). | ||
|
||
Note that the original code is implemented with Tensorflow for the paper. | ||
|
||
|
||
## Usage (make sure that DGLBACKEND is changed into mxnet) | ||
```bash | ||
DGLBACKEND=mxnet python gat_batch.py --dataset cora --gpu 0 --num-heads 8 | ||
``` |