Sequence Models

:label:sec_sequence

Imagine that you are watching movies on Netflix. As a good Netflix user, you decide to rate each of the movies religiously. After all, a good movie is a good movie, and you want to watch more of them, right? As it turns out, things are not quite so simple. People’s opinions on movies can change quite significantly over time. In fact, psychologists even have names for some of the effects:

  • There is anchoring, based on someone else’s opinion. For instance, after the Oscar awards, ratings for the corresponding movie go up, even though it is still the same movie. This effect persists for a few months until the award is forgotten. It has been shown that the effect lifts rating by over half a point :cite:Wu.Ahmed.Beutel.ea.2017.
  • There is the hedonic adaptation, where humans quickly adapt to accept an improved or a worsened situation as the new normal. For instance, after watching many good movies, the expectations that the next movie is equally good or better are high. Hence, even an average movie might be considered as bad after many great ones are watched.
  • There is seasonality. Very few viewers like to watch a Santa Claus movie in August.
  • In some cases, movies become unpopular due to the misbehaviors of directors or actors in the production.
  • Some movies become cult movies, because they were almost comically bad. Plan 9 from Outer Space and Troll 2 achieved a high degree of notoriety for this reason.

In short, movie ratings are anything but stationary. Thus, using temporal dynamics led to more accurate movie recommendations :cite:Koren.2009. Of course, sequence data are not just about movie ratings. The following gives more illustrations.

  • Many users have highly particular behavior when it comes to the time when they open apps. For instance, social media apps are much more popular after school with students. Stock market trading apps are more commonly used when the markets are open.
  • It is much harder to predict tomorrow’s stock prices than to fill in the blanks for a stock price we missed yesterday, even though both are just a matter of estimating one number. After all, foresight is so much harder than hindsight. In statistics, the former (predicting beyond the known observations) is called extrapolation whereas the latter (estimating between the existing observations) is called interpolation.
  • Music, speech, text, and videos are all sequential in nature. If we were to permute them they would make little sense. The headline dog bites man is much less surprising than man bites dog, even though the words are identical.
  • Earthquakes are strongly correlated, i.e., after a massive earthquake there are very likely several smaller aftershocks, much more so than without the strong quake. In fact, earthquakes are spatiotemporally correlated, i.e., the aftershocks typically occur within a short time span and in close proximity.
  • Humans interact with each other in a sequential nature, as can be seen in Twitter fights, dance patterns, and debates.

Statistical Tools

We need statistical tools and new deep neural network architectures to deal with sequence data. To keep things simple, we use the stock price (FTSE 100 index) illustrated in :numref:fig_ftse100 as an example.

FTSE 100 index over about 30 years. :width:400px :label:fig_ftse100

Let us denote the prices by $x_t$, i.e., at time step $t \in \mathbb{Z}^+$ we observe price $x_t$. Note that for sequences in this text, $t$ will typically be discrete and vary over integers or its subset. Suppose that a trader who wants to do well in the stock market on day $t$ predicts $x_t$ via

xt \sim P(x_t \mid x{t-1}, \ldots, x_1).

Autoregressive Models

In order to achieve this, our trader could use a regression model such as the one that we trained in :numref:sec_linear_concise. There is just one major problem: the number of inputs, $x{t-1}, \ldots, x_1$ varies, depending on $t$. That is to say, the number increases with the amount of data that we encounter, and we will need an approximation to make this computationally tractable. Much of what follows in this chapter will revolve around how to estimate $P(x_t \mid x{t-1}, \ldots, x_1)$ efficiently. In a nutshell it boils down to two strategies as follows.

First, assume that the potentially rather long sequence $x{t-1}, \ldots, x_1$ is not really necessary. In this case we might content ourselves with some timespan of length $\tau$ and only use $x{t-1}, \ldots, x_{t-\tau}$ observations. The immediate benefit is that now the number of arguments is always the same, at least for $t > \tau$. This allows us to train a deep network as indicated above. Such models will be called autoregressive models, as they quite literally perform regression on themselves.

The second strategy, shown in :numref:fig_sequence-model, is to keep some summary $ht$ of the past observations, and at the same time update $h_t$ in addition to the prediction $\hat{x}_t$. This leads to models that estimate $x_t$ with $\hat{x}_t = P(x_t \mid h{t})$ and moreover updates of the form $ht = g(h{t-1}, x_{t-1})$. Since $h_t$ is never observed, these models are also called latent autoregressive models.

A latent autoregressive model. :label:fig_sequence-model

Both cases raise the obvious question of how to generate training data. One typically uses historical observations to predict the next observation given the ones up to right now. Obviously we do not expect time to stand still. However, a common assumption is that while the specific values of $x_t$ might change, at least the dynamics of the sequence itself will not. This is reasonable, since novel dynamics are just that, novel and thus not predictable using data that we have so far. Statisticians call dynamics that do not change stationary. Regardless of what we do, we will thus get an estimate of the entire sequence via

P(x1, \ldots, x_T) = \prod{t=1}^T P(xt \mid x{t-1}, \ldots, x_1).

Note that the above considerations still hold if we deal with discrete objects, such as words, rather than continuous numbers. The only difference is that in such a situation we need to use a classifier rather than a regression model to estimate $P(xt \mid x{t-1}, \ldots, x_1)$.

Markov Models

Recall the approximation that in an autoregressive model we use only $x{t-1}, \ldots, x{t-\tau}$ instead of $x_{t-1}, \ldots, x_1$ to estimate $x_t$. Whenever this approximation is accurate we say that the sequence satisfies a Markov condition. In particular, if $\tau = 1$, we have a first-order Markov model and $P(x)$ is given by

P(x1, \ldots, x_T) = \prod{t=1}^T P(xt \mid x{t-1}) \text{ where } P(x_1 \mid x_0) = P(x_1).

Such models are particularly nice whenever $xt$ assumes only a discrete value, since in this case dynamic programming can be used to compute values along the chain exactly. For instance, we can compute $P(x{t+1} \mid x_{t-1})$ efficiently:

$$\begin{aligned} P(x{t+1} \mid x{t-1}) &= \frac{\sum{x_t} P(x{t+1}, xt, x{t-1})}{P(x{t-1})}\ &= \frac{\sum{xt} P(x{t+1} \mid xt, x{t-1}) P(xt, x{t-1})}{P(x{t-1})}\ &= \sum{xt} P(x{t+1} \mid xt) P(x_t \mid x{t-1}) \end{aligned} $$

by using the fact that we only need to take into account a very short history of past observations: $P(x{t+1} \mid x_t, x{t-1}) = P(x_{t+1} \mid x_t)$. Going into details of dynamic programming is beyond the scope of this section. Control and reinforcement learning algorithms use such tools extensively.

Causality

In principle, there is nothing wrong with unfolding $P(x_1, \ldots, x_T)$ in reverse order. After all, by conditioning we can always write it via

P(x1, \ldots, x_T) = \prod{t=T}^1 P(xt \mid x{t+1}, \ldots, x_T).

In fact, if we have a Markov model, we can obtain a reverse conditional probability distribution, too. In many cases, however, there exists a natural direction for the data, namely going forward in time. It is clear that future events cannot influence the past. Hence, if we change $xt$, we may be able to influence what happens for $x{t+1}$ going forward but not the converse. That is, if we change $xt$, the distribution over past events will not change. Consequently, it ought to be easier to explain $P(x{t+1} \mid xt)$ rather than $P(x_t \mid x{t+1})$. For instance, it has been shown that in some cases we can find $x_{t+1} = f(x_t) + \epsilon$ for some additive noise $\epsilon$, whereas the converse is not true :cite:Hoyer.Janzing.Mooij.ea.2009. This is great news, since it is typically the forward direction that we are interested in estimating. The book by Peters et al. has explained more on this topic :cite:Peters.Janzing.Scholkopf.2017. We are barely scratching the surface of it.

Training

After reviewing so many statistical tools, let us try this out in practice. We begin by generating some data. To keep things simple we generate our sequence data by using a sine function with some additive noise for time steps $1, 2, \ldots, 1000$.

```{.python .input} %matplotlib inline from d2l import mxnet as d2l from mxnet import autograd, np, npx, gluon, init from mxnet.gluon import nn npx.set_np()

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

```{.python .input}

@tab tensorflow

%matplotlib inline from d2l import tensorflow as d2l import tensorflow as tf

  1. ```{.python .input}
  2. #@tab mxnet, pytorch
  3. T = 1000 # Generate a total of 1000 points
  4. time = d2l.arange(1, T + 1, dtype=d2l.float32)
  5. x = d2l.sin(0.01 * time) + d2l.normal(0, 0.2, (T,))
  6. d2l.plot(time, [x], 'time', 'x', xlim=[1, 1000], figsize=(6, 3))

```{.python .input}

@tab tensorflow

T = 1000 # Generate a total of 1000 points time = d2l.arange(1, T + 1, dtype=d2l.float32) x = d2l.sin(0.01 * time) + d2l.normal([T], 0, 0.2) d2l.plot(time, [x], ‘time’, ‘x’, xlim=[1, 1000], figsize=(6, 3))

  1. Next, we need to turn such a sequence into features and labels that our model can train on.
  2. Based on the embedding dimension $\tau$ we map the data into pairs $y_t = x_t$ and $\mathbf{x}_t = [x_{t-\tau}, \ldots, x_{t-1}]$.
  3. The astute reader might have noticed that this gives us $\tau$ fewer data examples, since we do not have sufficient history for the first $\tau$ of them.
  4. A simple fix, in particular if the sequence is long,
  5. is to discard those few terms.
  6. Alternatively we could pad the sequence with zeros.
  7. Here we only use the first 600 feature-label pairs for training.
  8. ```{.python .input}
  9. #@tab mxnet, pytorch
  10. tau = 4
  11. features = d2l.zeros((T - tau, tau))
  12. for i in range(tau):
  13. features[:, i] = x[i: T - tau + i]
  14. labels = d2l.reshape(x[tau:], (-1, 1))

```{.python .input}

@tab tensorflow

tau = 4 features = tf.Variable(d2l.zeros((T - tau, tau))) for i in range(tau): features[:, i].assign(x[i: T - tau + i]) labels = d2l.reshape(x[tau:], (-1, 1))

  1. ```{.python .input}
  2. #@tab all
  3. batch_size, n_train = 16, 600
  4. # Only the first `n_train` examples are used for training
  5. train_iter = d2l.load_array((features[:n_train], labels[:n_train]),
  6. batch_size, is_train=True)

Here we keep the architecture fairly simple: just an MLP with two fully-connected layers, ReLU activation, and square loss.

```{.python .input}

A simple MLP

def get_net(): net = nn.Sequential() net.add(nn.Dense(10, activation=’relu’), nn.Dense(1)) net.initialize(init.Xavier()) return net

Square loss

loss = gluon.loss.L2Loss()

  1. ```{.python .input}
  2. #@tab pytorch
  3. # Function for initializing the weights of the network
  4. def init_weights(m):
  5. if type(m) == nn.Linear:
  6. torch.nn.init.xavier_uniform_(m.weight)
  7. # A simple MLP
  8. def get_net():
  9. net = nn.Sequential(nn.Linear(4, 10),
  10. nn.ReLU(),
  11. nn.Linear(10, 1))
  12. net.apply(init_weights)
  13. return net
  14. # Square loss
  15. loss = nn.MSELoss()

```{.python .input}

@tab tensorflow

Vanilla MLP architecture

def get_net(): net = tf.keras.Sequential([tf.keras.layers.Dense(10, activation=’relu’), tf.keras.layers.Dense(1)]) return net

Least mean squares loss

Note: L2 Loss = 1/2 * MSE Loss. TensorFlow has MSE Loss that is slightly

different from MXNet’s L2Loss by a factor of 2. Hence we halve the loss

value to get L2Loss in TF

loss = tf.keras.losses.MeanSquaredError()

  1. Now we are ready to train the model. The code below is essentially identical to the training loop in previous sections,
  2. such as :numref:`sec_linear_concise`.
  3. Thus, we will not delve into much detail.
  4. ```{.python .input}
  5. def train(net, train_iter, loss, epochs, lr):
  6. trainer = gluon.Trainer(net.collect_params(), 'adam',
  7. {'learning_rate': lr})
  8. for epoch in range(epochs):
  9. for X, y in train_iter:
  10. with autograd.record():
  11. l = loss(net(X), y)
  12. l.backward()
  13. trainer.step(batch_size)
  14. print(f'epoch {epoch + 1}, '
  15. f'loss: {d2l.evaluate_loss(net, train_iter, loss):f}')
  16. net = get_net()
  17. train(net, train_iter, loss, 5, 0.01)

```{.python .input}

@tab pytorch

def train(net, train_iter, loss, epochs, lr): trainer = torch.optim.Adam(net.parameters(), lr) for epoch in range(epochs): for X, y in train_iter: trainer.zero_grad() l = loss(net(X), y) l.backward() trainer.step() print(f’epoch {epoch + 1}, ‘ f’loss: {d2l.evaluate_loss(net, train_iter, loss):f}’)

net = get_net() train(net, train_iter, loss, 5, 0.01)

  1. ```{.python .input}
  2. #@tab tensorflow
  3. def train(net, train_iter, loss, epochs, lr):
  4. trainer = tf.keras.optimizers.Adam()
  5. for epoch in range(epochs):
  6. for X, y in train_iter:
  7. with tf.GradientTape() as g:
  8. out = net(X)
  9. l = loss(y, out) / 2
  10. params = net.trainable_variables
  11. grads = g.gradient(l, params)
  12. trainer.apply_gradients(zip(grads, params))
  13. print(f'epoch {epoch + 1}, '
  14. f'loss: {d2l.evaluate_loss(net, train_iter, loss):f}')
  15. net = get_net()
  16. train(net, train_iter, loss, 5, 0.01)

Prediction

Since the training loss is small, we would expect our model to work well. Let us see what this means in practice. The first thing to check is how well the model is able to predict what happens just in the next time step, namely the one-step-ahead prediction.

```{.python .input}

@tab all

onestep_preds = net(features) d2l.plot([time, time[tau:]], [d2l.numpy(x), d2l.numpy(onestep_preds)], ‘time’, ‘x’, legend=[‘data’, ‘1-step preds’], xlim=[1, 1000], figsize=(6, 3))

  1. The one-step-ahead predictions look nice, just as we expected.
  2. Even beyond 604 (`n_train + tau`) observations the predictions still look trustworthy.
  3. However, there is just one little problem to this:
  4. if we observe sequence data only until time step 604, we cannot hope to receive the inputs for all the future one-step-ahead predictions.
  5. Instead, we need to work our way forward one step at a time:
  6. $$
  7. \hat{x}_{605} = f(x_{601}, x_{602}, x_{603}, x_{604}), \\
  8. \hat{x}_{606} = f(x_{602}, x_{603}, x_{604}, \hat{x}_{605}), \\
  9. \hat{x}_{607} = f(x_{603}, x_{604}, \hat{x}_{605}, \hat{x}_{606}),\\
  10. \hat{x}_{608} = f(x_{604}, \hat{x}_{605}, \hat{x}_{606}, \hat{x}_{607}),\\
  11. \hat{x}_{609} = f(\hat{x}_{605}, \hat{x}_{606}, \hat{x}_{607}, \hat{x}_{608}),\\
  12. \ldots
  13. $$
  14. Generally, for an observed sequence up to $x_t$, its predicted output $\hat{x}_{t+k}$ at time step $t+k$ is called the *$k$-step-ahead prediction*. Since we have observed up to $x_{604}$, its $k$-step-ahead prediction is $\hat{x}_{604+k}$.
  15. In other words, we will have to use our own predictions to make multistep-ahead predictions.
  16. Let us see how well this goes.
  17. ```{.python .input}
  18. #@tab mxnet, pytorch
  19. multistep_preds = d2l.zeros(T)
  20. multistep_preds[: n_train + tau] = x[: n_train + tau]
  21. for i in range(n_train + tau, T):
  22. multistep_preds[i] = d2l.reshape(net(
  23. multistep_preds[i - tau: i].reshape(1, -1)), 1)

```{.python .input}

@tab tensorflow

multistep_preds = tf.Variable(d2l.zeros(T)) multistep_preds[:n_train + tau].assign(x[:n_train + tau]) for i in range(n_train + tau, T): multistep_preds[i].assign(d2l.reshape(net( d2l.reshape(multistep_preds[i - tau: i], (1, -1))), ()))

  1. ```{.python .input}
  2. #@tab all
  3. d2l.plot([time, time[tau:], time[n_train + tau:]],
  4. [d2l.numpy(x), d2l.numpy(onestep_preds),
  5. d2l.numpy(multistep_preds[n_train + tau:])], 'time',
  6. 'x', legend=['data', '1-step preds', 'multistep preds'],
  7. xlim=[1, 1000], figsize=(6, 3))

As the above example shows, this is a spectacular failure. The predictions decay to a constant pretty quickly after a few prediction steps. Why did the algorithm work so poorly? This is ultimately due to the fact that the errors build up. Let us say that after step 1 we have some error $\epsilon_1 = \bar\epsilon$. Now the input for step 2 is perturbed by $\epsilon_1$, hence we suffer some error in the order of $\epsilon_2 = \bar\epsilon + c \epsilon_1$ for some constant $c$, and so on. The error can diverge rather rapidly from the true observations. This is a common phenomenon. For instance, weather forecasts for the next 24 hours tend to be pretty accurate but beyond that the accuracy declines rapidly. We will discuss methods for improving this throughout this chapter and beyond.

Let us take a closer look at the difficulties in $k$-step-ahead predictions by computing predictions on the entire sequence for $k = 1, 4, 16, 64$.

```{.python .input}

@tab all

max_steps = 64

  1. ```{.python .input}
  2. #@tab mxnet, pytorch
  3. features = d2l.zeros((T - tau - max_steps + 1, tau + max_steps))
  4. # Column `i` (`i` < `tau`) are observations from `x` for time steps from
  5. # `i + 1` to `i + T - tau - max_steps + 1`
  6. for i in range(tau):
  7. features[:, i] = x[i: i + T - tau - max_steps + 1].T
  8. # Column `i` (`i` >= `tau`) are the (`i - tau + 1`)-step-ahead predictions for
  9. # time steps from `i + 1` to `i + T - tau - max_steps + 1`
  10. for i in range(tau, tau + max_steps):
  11. features[:, i] = d2l.reshape(net(features[:, i - tau: i]), -1)

```{.python .input}

@tab tensorflow

features = tf.Variable(d2l.zeros((T - tau - max_steps + 1, tau + max_steps)))

Column i (i < tau) are observations from x for time steps from

i + 1 to i + T - tau - max_steps + 1

for i in range(tau): features[:, i].assign(x[i: i + T - tau - max_steps + 1].numpy().T)

Column i (i >= tau) are the (i - tau + 1)-step-ahead predictions for

time steps from i + 1 to i + T - tau - max_steps + 1

for i in range(tau, tau + max_steps): features[:, i].assign(d2l.reshape(net((features[:, i - tau: i])), -1))

  1. ```{.python .input}
  2. #@tab all
  3. steps = (1, 4, 16, 64)
  4. d2l.plot([time[tau + i - 1: T - max_steps + i] for i in steps],
  5. [d2l.numpy(features[:, tau + i - 1]) for i in steps], 'time', 'x',
  6. legend=[f'{i}-step preds' for i in steps], xlim=[5, 1000],
  7. figsize=(6, 3))

This clearly illustrates how the quality of the prediction changes as we try to predict further into the future. While the 4-step-ahead predictions still look good, anything beyond that is almost useless.

Summary

  • There is quite a difference in difficulty between interpolation and extrapolation. Consequently, if you have a sequence, always respect the temporal order of the data when training, i.e., never train on future data.
  • Sequence models require specialized statistical tools for estimation. Two popular choices are autoregressive models and latent-variable autoregressive models.
  • For causal models (e.g., time going forward), estimating the forward direction is typically a lot easier than the reverse direction.
  • For an observed sequence up to time step $t$, its predicted output at time step $t+k$ is the $k$-step-ahead prediction. As we predict further in time by increasing $k$, the errors accumulate and the quality of the prediction degrades, often dramatically.

Exercises

  1. Improve the model in the experiment of this section.
    1. Incorporate more than the past 4 observations? How many do you really need?
    2. How many past observations would you need if there was no noise? Hint: you can write $\sin$ and $\cos$ as a differential equation.
    3. Can you incorporate older observations while keeping the total number of features constant? Does this improve accuracy? Why?
    4. Change the neural network architecture and evaluate the performance.
  2. An investor wants to find a good security to buy. He looks at past returns to decide which one is likely to do well. What could possibly go wrong with this strategy?
  3. Does causality also apply to text? To which extent?
  4. Give an example for when a latent autoregressive model might be needed to capture the dynamic of the data.

:begin_tab:mxnet Discussions :end_tab:

:begin_tab:pytorch Discussions :end_tab:

:begin_tab:tensorflow Discussions :end_tab: