Hi,
I saw the GAT implementation and I wanted to retrieve the attention weights (equation 3) from
https://docs.dgl.ai/en/latest/tutorials/models/1_gnn/9_gat.html
However, looking at the values of alpha = F.softmax(nodes.mailbox[‘e’], dim=1) do not appear to be right (they’re uniformly distributed when I print them).
How can I get these values?
Thanks!