paper-with-me

GATv2

Graph Attention Network v2

2000년 도입 · 논문 9편에서 사용

The __GATv2__ operator from the “How Attentive are Graph Attention Networks?” paper, which fixes the static attention problem of the standard GAT layer: since the linear layers in the standard GAT are applied right after each other, the ranking of attended nodes is unconditioned on the query node. In contrast, in GATv2, every node can attend to any other node. GATv2 scoring function: $e_{i,j} =\mathbf{a}^{\top}\mathrm{LeakyReLU}\left(\mathbf{W}[\mathbf{h}_i \, \Vert \,\mathbf{h}_j]\right)$

출처: How Attentive are Graph Attention Networks?

소개 논문: How Attentive are Graph Attention Networks?

Graph Models · Graphs