Additive Attention, also known as Bahdanau Attention, uses a one-hidden layer feed-forward network to calculate the attention alignment score:
$$f_{att}\left(\textbf{h}_{i}, \textbf{s}_{j}\right) = v_{a}^{T}\tanh\left(\textbf{W}_{a}\left[\textbf{h}_{i};\textbf{s}_{j}\right]\right)$$
where $\textbf{v}_{a}$ and $\textbf{W}_{a}$ are learned attention parameters. Here $\textbf{h}$ refers to the hidden states for the encoder, and $\textbf{s}$ is the hidden states for the decoder. The function above is thus a type of alignment score function. We can use a matrix of alignment scores to show the correlation between source and target words, as the Figure to the right shows.
Within a neural network, once we have the alignment scores, we calculate the final scores using a softmax function of these alignment scores (ensuring it sums to 1).
Source: Neural Machine Translation by Jointly Learning to Align and TranslatePaper | Code | Results | Date | Stars |
---|
Task | Papers | Share |
---|---|---|
Speech Synthesis | 44 | 9.95% |
Sentence | 28 | 6.33% |
Decoder | 21 | 4.75% |
Reinforcement Learning (RL) | 15 | 3.39% |
Text-To-Speech Synthesis | 15 | 3.39% |
Combinatorial Optimization | 14 | 3.17% |
Deep Reinforcement Learning | 14 | 3.17% |
Reinforcement Learning | 12 | 2.71% |
Language Modelling | 10 | 2.26% |