Natural Language Inference: Using Attention

:label:sec_natural-language-inference-attention

We introduced the natural language inference task and the SNLI dataset in :numref:sec_natural-language-inference-and-dataset. In view of many models that are based on complex and deep architectures, Parikh et al. proposed to address natural language inference with attention mechanisms and called it a “decomposable attention model” :cite:Parikh.Tackstrom.Das.ea.2016. This results in a model without recurrent or convolutional layers, achieving the best result at the time on the SNLI dataset with much fewer parameters. In this section, we will describe and implement this attention-based method (with MLPs) for natural language inference, as depicted in :numref:fig_nlp-map-nli-attention.

This section feeds pretrained GloVe to an architecture based on attention and MLPs for natural language inference. :label:fig_nlp-map-nli-attention

The Model

Simpler than preserving the order of tokens in premises and hypotheses, we can just align tokens in one text sequence to every token in the other, and vice versa, then compare and aggregate such information to predict the logical relationships between premises and hypotheses. Similar to alignment of tokens between source and target sentences in machine translation, the alignment of tokens between premises and hypotheses can be neatly accomplished by attention mechanisms.

Natural language inference using attention mechanisms. :label:fig_nli_attention

:numref:fig_nli_attention depicts the natural language inference method using attention mechanisms. At a high level, it consists of three jointly trained steps: attending, comparing, and aggregating. We will illustrate them step by step in the following.

```{.python .input} from d2l import mxnet as d2l from mxnet import gluon, init, np, npx from mxnet.gluon import nn

npx.set_np()

  1. ```{.python .input}
  2. #@tab pytorch
  3. from d2l import torch as d2l
  4. import torch
  5. from torch import nn
  6. from torch.nn import functional as F

Attending

The first step is to align tokens in one text sequence to each token in the other sequence. Suppose that the premise is “i do need sleep” and the hypothesis is “i am tired”. Due to semantical similarity, we may wish to align “i” in the hypothesis with “i” in the premise, and align “tired” in the hypothesis with “sleep” in the premise. Likewise, we may wish to align “i” in the premise with “i” in the hypothesis, and align “need” and “sleep” in the premise with “tired” in the hypothesis. Note that such alignment is soft using weighted average, where ideally large weights are associated with the tokens to be aligned. For ease of demonstration, :numref:fig_nli_attention shows such alignment in a hard way.

Now we describe the soft alignment using attention mechanisms in more detail. Denote by $\mathbf{A} = (\mathbf{a}1, \ldots, \mathbf{a}_m)$ and $\mathbf{B} = (\mathbf{b}_1, \ldots, \mathbf{b}_n)$ the premise and hypothesis, whose number of tokens are $m$ and $n$, respectively, where $\mathbf{a}_i, \mathbf{b}_j \in \mathbb{R}^{d}$ ($i = 1, \ldots, m, j = 1, \ldots, n$) is a $d$-dimensional word vector. For soft alignment, we compute the attention weights $e{ij} \in \mathbb{R}$ as

e_{ij} = f(\mathbf{a}_i)^\top f(\mathbf{b}_j), :eqlabel:eq_nli_e

where the function $f$ is an MLP defined in the following mlp function. The output dimension of $f$ is specified by the num_hiddens argument of mlp.

```{.python .input} def mlp(num_hiddens, flatten): net = nn.Sequential() net.add(nn.Dropout(0.2)) net.add(nn.Dense(num_hiddens, activation=’relu’, flatten=flatten)) net.add(nn.Dropout(0.2)) net.add(nn.Dense(num_hiddens, activation=’relu’, flatten=flatten)) return net

  1. ```{.python .input}
  2. #@tab pytorch
  3. def mlp(num_inputs, num_hiddens, flatten):
  4. net = []
  5. net.append(nn.Dropout(0.2))
  6. net.append(nn.Linear(num_inputs, num_hiddens))
  7. net.append(nn.ReLU())
  8. if flatten:
  9. net.append(nn.Flatten(start_dim=1))
  10. net.append(nn.Dropout(0.2))
  11. net.append(nn.Linear(num_hiddens, num_hiddens))
  12. net.append(nn.ReLU())
  13. if flatten:
  14. net.append(nn.Flatten(start_dim=1))
  15. return nn.Sequential(*net)

It should be highlighted that, in :eqref:eq_nli_e $f$ takes inputs $\mathbf{a}_i$ and $\mathbf{b}_j$ separately rather than takes a pair of them together as the input. This decomposition trick leads to only $m + n$ applications (linear complexity) of $f$ rather than $mn$ applications (quadratic complexity).

Normalizing the attention weights in :eqref:eq_nli_e, we compute the weighted average of all the token vectors in the hypothesis to obtain representation of the hypothesis that is softly aligned with the token indexed by $i$ in the premise:

$$ \boldsymbol{\beta}i = \sum{j=1}^{n}\frac{\exp(e{ij})}{ \sum{k=1}^{n} \exp(e_{ik})} \mathbf{b}_j. $$

Likewise, we compute soft alignment of premise tokens for each token indexed by $j$ in the hypothesis:

$$ \boldsymbol{\alpha}j = \sum{i=1}^{m}\frac{\exp(e{ij})}{ \sum{k=1}^{m} \exp(e_{kj})} \mathbf{a}_i. $$

Below we define the Attend class to compute the soft alignment of hypotheses (beta) with input premises A and soft alignment of premises (alpha) with input hypotheses B.

```{.python .input} class Attend(nn.Block): def init(self, numhiddens, **kwargs): super(Attend, self)._init(**kwargs) self.f = mlp(num_hiddens=num_hiddens, flatten=False)

  1. def forward(self, A, B):
  2. # Shape of `A`/`B`: (b`atch_size`, no. of tokens in sequence A/B,
  3. # `embed_size`)
  4. # Shape of `f_A`/`f_B`: (`batch_size`, no. of tokens in sequence A/B,
  5. # `num_hiddens`)
  6. f_A = self.f(A)
  7. f_B = self.f(B)
  8. # Shape of `e`: (`batch_size`, no. of tokens in sequence A,
  9. # no. of tokens in sequence B)
  10. e = npx.batch_dot(f_A, f_B, transpose_b=True)
  11. # Shape of `beta`: (`batch_size`, no. of tokens in sequence A,
  12. # `embed_size`), where sequence B is softly aligned with each token
  13. # (axis 1 of `beta`) in sequence A
  14. beta = npx.batch_dot(npx.softmax(e), B)
  15. # Shape of `alpha`: (`batch_size`, no. of tokens in sequence B,
  16. # `embed_size`), where sequence A is softly aligned with each token
  17. # (axis 1 of `alpha`) in sequence B
  18. alpha = npx.batch_dot(npx.softmax(e.transpose(0, 2, 1)), A)
  19. return beta, alpha
  1. ```{.python .input}
  2. #@tab pytorch
  3. class Attend(nn.Module):
  4. def __init__(self, num_inputs, num_hiddens, **kwargs):
  5. super(Attend, self).__init__(**kwargs)
  6. self.f = mlp(num_inputs, num_hiddens, flatten=False)
  7. def forward(self, A, B):
  8. # Shape of `A`/`B`: (`batch_size`, no. of tokens in sequence A/B,
  9. # `embed_size`)
  10. # Shape of `f_A`/`f_B`: (`batch_size`, no. of tokens in sequence A/B,
  11. # `num_hiddens`)
  12. f_A = self.f(A)
  13. f_B = self.f(B)
  14. # Shape of `e`: (`batch_size`, no. of tokens in sequence A,
  15. # no. of tokens in sequence B)
  16. e = torch.bmm(f_A, f_B.permute(0, 2, 1))
  17. # Shape of `beta`: (`batch_size`, no. of tokens in sequence A,
  18. # `embed_size`), where sequence B is softly aligned with each token
  19. # (axis 1 of `beta`) in sequence A
  20. beta = torch.bmm(F.softmax(e, dim=-1), B)
  21. # Shape of `alpha`: (`batch_size`, no. of tokens in sequence B,
  22. # `embed_size`), where sequence A is softly aligned with each token
  23. # (axis 1 of `alpha`) in sequence B
  24. alpha = torch.bmm(F.softmax(e.permute(0, 2, 1), dim=-1), A)
  25. return beta, alpha

Comparing

In the next step, we compare a token in one sequence with the other sequence that is softly aligned with that token. Note that in soft alignment, all the tokens from one sequence, though with probably different attention weights, will be compared with a token in the other sequence. For easy of demonstration, :numref:fig_nli_attention pairs tokens with aligned tokens in a hard way. For example, suppose that the attending step determines that “need” and “sleep” in the premise are both aligned with “tired” in the hypothesis, the pair “tired—need sleep” will be compared.

In the comparing step, we feed the concatenation (operator $[\cdot, \cdot]$) of tokens from one sequence and aligned tokens from the other sequence into a function $g$ (an MLP):

\mathbf{v}{A,i} = g([\mathbf{a}_i, \boldsymbol{\beta}_i]), i = 1, \ldots, m\ \mathbf{v}{B,j} = g([\mathbf{b}_j, \boldsymbol{\alpha}_j]), j = 1, \ldots, n.

:eqlabel:eq_nli_v_ab

In :eqref:eq_nli_v_ab, $\mathbf{v}{A,i}$ is the comparison between token $i$ in the premise and all the hypothesis tokens that are softly aligned with token $i$; while $\mathbf{v}{B,j}$ is the comparison between token $j$ in the hypothesis and all the premise tokens that are softly aligned with token $j$. The following Compare class defines such as comparing step.

```{.python .input} class Compare(nn.Block): def init(self, numhiddens, **kwargs): super(Compare, self)._init(**kwargs) self.g = mlp(num_hiddens=num_hiddens, flatten=False)

  1. def forward(self, A, B, beta, alpha):
  2. V_A = self.g(np.concatenate([A, beta], axis=2))
  3. V_B = self.g(np.concatenate([B, alpha], axis=2))
  4. return V_A, V_B
  1. ```{.python .input}
  2. #@tab pytorch
  3. class Compare(nn.Module):
  4. def __init__(self, num_inputs, num_hiddens, **kwargs):
  5. super(Compare, self).__init__(**kwargs)
  6. self.g = mlp(num_inputs, num_hiddens, flatten=False)
  7. def forward(self, A, B, beta, alpha):
  8. V_A = self.g(torch.cat([A, beta], dim=2))
  9. V_B = self.g(torch.cat([B, alpha], dim=2))
  10. return V_A, V_B

Aggregating

With two sets of comparison vectors $\mathbf{v}{A,i}$ ($i = 1, \ldots, m$) and $\mathbf{v}{B,j}$ ($j = 1, \ldots, n$) on hand, in the last step we will aggregate such information to infer the logical relationship. We begin by summing up both sets:

$$ \mathbf{v}A = \sum{i=1}^{m} \mathbf{v}{A,i}, \quad \mathbf{v}_B = \sum{j=1}^{n}\mathbf{v}_{B,j}. $$

Next we feed the concatenation of both summarization results into function $h$ (an MLP) to obtain the classification result of the logical relationship:

$$ \hat{\mathbf{y}} = h([\mathbf{v}_A, \mathbf{v}_B]). $$

The aggregation step is defined in the following Aggregate class.

```{.python .input} class Aggregate(nn.Block): def init(self, numhiddens, numoutputs, **kwargs): super(Aggregate, self).__init(**kwargs) self.h = mlp(num_hiddens=num_hiddens, flatten=True) self.h.add(nn.Dense(num_outputs))

  1. def forward(self, V_A, V_B):
  2. # Sum up both sets of comparison vectors
  3. V_A = V_A.sum(axis=1)
  4. V_B = V_B.sum(axis=1)
  5. # Feed the concatenation of both summarization results into an MLP
  6. Y_hat = self.h(np.concatenate([V_A, V_B], axis=1))
  7. return Y_hat
  1. ```{.python .input}
  2. #@tab pytorch
  3. class Aggregate(nn.Module):
  4. def __init__(self, num_inputs, num_hiddens, num_outputs, **kwargs):
  5. super(Aggregate, self).__init__(**kwargs)
  6. self.h = mlp(num_inputs, num_hiddens, flatten=True)
  7. self.linear = nn.Linear(num_hiddens, num_outputs)
  8. def forward(self, V_A, V_B):
  9. # Sum up both sets of comparison vectors
  10. V_A = V_A.sum(dim=1)
  11. V_B = V_B.sum(dim=1)
  12. # Feed the concatenation of both summarization results into an MLP
  13. Y_hat = self.linear(self.h(torch.cat([V_A, V_B], dim=1)))
  14. return Y_hat

Putting All Things Together

By putting the attending, comparing, and aggregating steps together, we define the decomposable attention model to jointly train these three steps.

```{.python .input} class DecomposableAttention(nn.Block): def init(self, vocab, embedsize, numhiddens, **kwargs): super(DecomposableAttention, self).__init(**kwargs) self.embedding = nn.Embedding(len(vocab), embed_size) self.attend = Attend(num_hiddens) self.compare = Compare(num_hiddens)

  1. # There are 3 possible outputs: entailment, contradiction, and neutral
  2. self.aggregate = Aggregate(num_hiddens, 3)
  3. def forward(self, X):
  4. premises, hypotheses = X
  5. A = self.embedding(premises)
  6. B = self.embedding(hypotheses)
  7. beta, alpha = self.attend(A, B)
  8. V_A, V_B = self.compare(A, B, beta, alpha)
  9. Y_hat = self.aggregate(V_A, V_B)
  10. return Y_hat
  1. ```{.python .input}
  2. #@tab pytorch
  3. class DecomposableAttention(nn.Module):
  4. def __init__(self, vocab, embed_size, num_hiddens, num_inputs_attend=100,
  5. num_inputs_compare=200, num_inputs_agg=400, **kwargs):
  6. super(DecomposableAttention, self).__init__(**kwargs)
  7. self.embedding = nn.Embedding(len(vocab), embed_size)
  8. self.attend = Attend(num_inputs_attend, num_hiddens)
  9. self.compare = Compare(num_inputs_compare, num_hiddens)
  10. # There are 3 possible outputs: entailment, contradiction, and neutral
  11. self.aggregate = Aggregate(num_inputs_agg, num_hiddens, num_outputs=3)
  12. def forward(self, X):
  13. premises, hypotheses = X
  14. A = self.embedding(premises)
  15. B = self.embedding(hypotheses)
  16. beta, alpha = self.attend(A, B)
  17. V_A, V_B = self.compare(A, B, beta, alpha)
  18. Y_hat = self.aggregate(V_A, V_B)
  19. return Y_hat

Training and Evaluating the Model

Now we will train and evaluate the defined decomposable attention model on the SNLI dataset. We begin by reading the dataset.

Reading the dataset

We download and read the SNLI dataset using the function defined in :numref:sec_natural-language-inference-and-dataset. The batch size and sequence length are set to $256$ and $50$, respectively.

```{.python .input}

@tab all

batch_size, num_steps = 256, 50 train_iter, test_iter, vocab = d2l.load_data_snli(batch_size, num_steps)

  1. ### Creating the Model
  2. We use the pretrained 100-dimensional GloVe embedding to represent the input tokens.
  3. Thus, we predefine the dimension of vectors $\mathbf{a}_i$ and $\mathbf{b}_j$ in :eqref:`eq_nli_e` as 100.
  4. The output dimension of functions $f$ in :eqref:`eq_nli_e` and $g$ in :eqref:`eq_nli_v_ab` is set to 200.
  5. Then we create a model instance, initialize its parameters,
  6. and load the GloVe embedding to initialize vectors of input tokens.
  7. ```{.python .input}
  8. embed_size, num_hiddens, devices = 100, 200, d2l.try_all_gpus()
  9. net = DecomposableAttention(vocab, embed_size, num_hiddens)
  10. net.initialize(init.Xavier(), ctx=devices)
  11. glove_embedding = d2l.TokenEmbedding('glove.6b.100d')
  12. embeds = glove_embedding[vocab.idx_to_token]
  13. net.embedding.weight.set_data(embeds)

```{.python .input}

@tab pytorch

embedsize, num_hiddens, devices = 100, 200, d2l.try_all_gpus() net = DecomposableAttention(vocab, embed_size, num_hiddens) glove_embedding = d2l.TokenEmbedding(‘glove.6b.100d’) embeds = glove_embedding[vocab.idx_to_token] net.embedding.weight.data.copy(embeds);

  1. ### Training and Evaluating the Model
  2. In contrast to the `split_batch` function in :numref:`sec_multi_gpu` that takes single inputs such as text sequences (or images),
  3. we define a `split_batch_multi_inputs` function to take multiple inputs such as premises and hypotheses in minibatches.
  4. ```{.python .input}
  5. #@save
  6. def split_batch_multi_inputs(X, y, devices):
  7. """Split multi-input `X` and `y` into multiple devices."""
  8. X = list(zip(*[gluon.utils.split_and_load(
  9. feature, devices, even_split=False) for feature in X]))
  10. return (X, gluon.utils.split_and_load(y, devices, even_split=False))

Now we can train and evaluate the model on the SNLI dataset.

```{.python .input} lr, num_epochs = 0.001, 4 trainer = gluon.Trainer(net.collect_params(), ‘adam’, {‘learning_rate’: lr}) loss = gluon.loss.SoftmaxCrossEntropyLoss() d2l.train_ch13(net, train_iter, test_iter, loss, trainer, num_epochs, devices, split_batch_multi_inputs)

  1. ```{.python .input}
  2. #@tab pytorch
  3. lr, num_epochs = 0.001, 4
  4. trainer = torch.optim.Adam(net.parameters(), lr=lr)
  5. loss = nn.CrossEntropyLoss(reduction="none")
  6. d2l.train_ch13(net, train_iter, test_iter, loss, trainer, num_epochs, devices)

Using the Model

Finally, define the prediction function to output the logical relationship between a pair of premise and hypothesis.

```{.python .input}

@save

def predict_snli(net, vocab, premise, hypothesis): “””Predict the logical relationship between the premise and hypothesis.””” premise = np.array(vocab[premise], ctx=d2l.try_gpu()) hypothesis = np.array(vocab[hypothesis], ctx=d2l.try_gpu()) label = np.argmax(net([premise.reshape((1, -1)), hypothesis.reshape((1, -1))]), axis=1) return ‘entailment’ if label == 0 else ‘contradiction’ if label == 1 \ else ‘neutral’

  1. ```{.python .input}
  2. #@tab pytorch
  3. #@save
  4. def predict_snli(net, vocab, premise, hypothesis):
  5. """Predict the logical relationship between the premise and hypothesis."""
  6. net.eval()
  7. premise = torch.tensor(vocab[premise], device=d2l.try_gpu())
  8. hypothesis = torch.tensor(vocab[hypothesis], device=d2l.try_gpu())
  9. label = torch.argmax(net([premise.reshape((1, -1)),
  10. hypothesis.reshape((1, -1))]), dim=1)
  11. return 'entailment' if label == 0 else 'contradiction' if label == 1 \
  12. else 'neutral'

We can use the trained model to obtain the natural language inference result for a sample pair of sentences.

```{.python .input}

@tab all

predict_snli(net, vocab, [‘he’, ‘is’, ‘good’, ‘.’], [‘he’, ‘is’, ‘bad’, ‘.’]) ```

Summary

  • The decomposable attention model consists of three steps for predicting the logical relationships between premises and hypotheses: attending, comparing, and aggregating.
  • With attention mechanisms, we can align tokens in one text sequence to every token in the other, and vice versa. Such alignment is soft using weighted average, where ideally large weights are associated with the tokens to be aligned.
  • The decomposition trick leads to a more desirable linear complexity than quadratic complexity when computing attention weights.
  • We can use pretrained word vectors as the input representation for downstream natural language processing task such as natural language inference.

Exercises

  1. Train the model with other combinations of hyperparameters. Can you get better accuracy on the test set?
  2. What are major drawbacks of the decomposable attention model for natural language inference?
  3. Suppose that we want to get the level of semantical similarity (e.g., a continuous value between 0 and 1) for any pair of sentences. How shall we collect and label the dataset? Can you design a model with attention mechanisms?

:begin_tab:mxnet Discussions :end_tab:

:begin_tab:pytorch Discussions :end_tab: