barkincavdaroglu / Link-Prediction-Mesh-Network

PyTorch Implementation of a Deep Learning Model for Temporal Link Prediction in MANETs
2 stars 1 forks source link

Implement GATv2 and test it against GAT #21

Closed barkincavdaroglu closed 1 year ago

barkincavdaroglu commented 1 year ago

https://arxiv.org/pdf/2105.14491.pdf

Currently, our NodeAttention applies linear layer W on all neighbor pairs of node features, concatenates them, applies attention with a and computes attention coefficients using leaky relu.

GATv2 first concatenates node features and applies linear layer W, leaky relu and finally the attention layer a.