You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: gat/README.md
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,7 @@ This repository provides a clean and short implementation of the official GAT mo
17
17
18
18
## Key Features
19
19
20
-
-**GAT Model**: Implementation of the Graph Attention Network model with multi-head attention based on on the paper "Graph Attention Network" by Velickovic et al.
20
+
-**GAT Model**: Implementation of the Graph Attention Network model with multi-head attention based on the paper "Graph Attention Network" by Velickovic et al.
21
21
-**Graph Attention Layers**: Implementation of graph convolutional layers that aggregate information from neighboring nodes using a self-attention mechanisms to learn node importance weights.
22
22
-**Training and Evaluation**: Code for training GAT models on graph-structured data and evaluating their performance on node classification tasks on the *Cora* benchmark dataset.
23
23
@@ -45,7 +45,7 @@ Following the official implementation, the first GAT layer consists of **K = 8 a
45
45
46
46
47
47
# Usage
48
-
Training and evaluating the GAT model on the Cora dataset can be done through running the the `main.py` script as follows:
48
+
Training and evaluating the GAT model on the Cora dataset can be done through running the `main.py` script as follows:
49
49
50
50
1. Clone the PyTorch examples repository:
51
51
@@ -60,7 +60,7 @@ cd examples/gat
60
60
pip install -r requirements.txt
61
61
```
62
62
63
-
3. Train the GAT model by running the the `main.py` script as follows:: (Example using the default parameters)
63
+
3. Train the GAT model by running the `main.py` script as follows:: (Example using the default parameters)
0 commit comments