Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
thumbnail: "url to a thumbnail used in social sharing"
|
3 |
+
tags:
|
4 |
+
- graph neural networks
|
5 |
+
license:
|
6 |
+
- cc0.0
|
7 |
+
---
|
8 |
+
|
9 |
+
## Keras Implementation of Graph attention networks for node classification 🕸
|
10 |
+
|
11 |
+
This repo contains the model and the notebook [to this Keras example on Graph Attention Networks for Node Classification](https://keras.io/examples/graph/gat_node_classification/).
|
12 |
+
|
13 |
+
Full credits to: [Alexander Kensert]/(https://github.com/akensert)
|
14 |
+
|
15 |
+
## Background Information
|
16 |
+
Graph neural networks is the preferred neural network architecture for processing data structured as graphs (for example, social networks or molecule structures), yielding better results than fully-connected networks or convolutional networks.
|
17 |
+
|
18 |
+
This tutorial implements a specific graph neural network known as a [Graph Attention Network (GAT)](https://arxiv.org/abs/1710.10903) to predict labels of scientific papers based on the papers they cite (using the [Cora dataset](https://linqs.soe.ucsc.edu/data)).
|
19 |
+
|
20 |
+
References
|
21 |
+
For more information on GAT, see the original paper [Graph Attention Networks](https://arxiv.org/abs/1710.10903) as well as [DGL's Graph Attention Networks](https://docs.dgl.ai/en/0.4.x/tutorials/models/1_gnn/9_gat.html) documentation.
|