Chapter 232
Deep Recurrent Neural Networks
Deep Recurrent Neural Networks
Up to now, we only discussed RNNs with a single unidirectional hidden layer. In it the specific functional form of how latent variables and observations interact is rather arbitrary. This is not a big problem as long as we have enough flexibility to model different types of interactions. With a single layer, however, this can be quite challenging. In the case of the linear models, we fixed this problem by adding more layers. Within RNNs this is a bit trickier, since we first need to decide how and where to add extra nonlinearity.
In fact, we could stack multiple layers of RNNs on top of each other. This results in a flexible mechanism, due to the combination of several simple layers. In particular, data might be relevant at different levels of the stack. For instance, we might want to keep high-level data about financial market conditions (bear or bull market) available, whereas at a lower level we only record shorter-term temporal dynamics.
Beyond all the above abstract discussion it is probably easiest to understand the family of models we are interested in by reviewing fig_deep_rnn. It describes a deep RNN with hidden layers. Each hidden state is continuously passed to both the next time step of the current layer and the current time step of the next layer.
Functional Dependencies
We can formalize the functional dependencies within the deep architecture of hidden layers depicted in fig_deep_rnn. Our following discussion focuses primarily on the vanilla RNN model, but it applies to other sequence models, too.
Suppose that we have a minibatch input (number of examples: , number of inputs in each example: ) at time step . At the same time step, let the hidden state of the hidden layer () be (number of hidden units: ) and the output layer variable be (number of outputs: ). Setting , the hidden state of the hidden layer that uses the activation function is expressed as follows:
where the weights and , together with the bias , are the model parameters of the hidden layer.
In the end, the calculation of the output layer is only based on the hidden state of the final hidden layer:
where the weight and the bias are the model parameters of the output layer.
Just as with MLPs, the number of hidden layers and the number of hidden units are hyperparameters. In other words, they can be tuned or specified by us. In addition, we can easily get a deep gated RNN by replacing the hidden state computation in eq_deep_rnn_H with that from a GRU or an LSTM.
Concise Implementation
Fortunately many of the logistical details required to implement multiple layers of an RNN are readily available in high-level APIs. To keep things simple we only illustrate the implementation using such built-in functionalities. Let us take an LSTM model as an example. The code is very similar to the one we used previously in sec_lstm. In fact, the only difference is that we specify the number of layers explicitly rather than picking the default of a single layer. As usual, we begin by loading the dataset.
from d2l import mxnet as d2l
from mxnet import npx
from mxnet.gluon import rnn
npx.set_np()
batch_size, num_steps = 32, 35
train_iter, vocab = d2l.load_data_time_machine(batch_size, num_steps)#@tab pytorch
from d2l import torch as d2l
import torch
from torch import nn
batch_size, num_steps = 32, 35
train_iter, vocab = d2l.load_data_time_machine(batch_size, num_steps)The architectural decisions such as choosing hyperparameters are very similar to those of sec_lstm.
We pick the same number of inputs and outputs as we have distinct tokens, i.e., vocab_size.
The number of hidden units is still 256.
The only difference is that we now select a nontrivial number of hidden layers by specifying the value of num_layers.
vocab_size, num_hiddens, num_layers = len(vocab), 256, 2
device = d2l.try_gpu()
lstm_layer = rnn.LSTM(num_hiddens, num_layers)
model = d2l.RNNModel(lstm_layer, len(vocab))#@tab pytorch
vocab_size, num_hiddens, num_layers = len(vocab), 256, 2
num_inputs = vocab_size
device = d2l.try_gpu()
lstm_layer = nn.LSTM(num_inputs, num_hiddens, num_layers)
model = d2l.RNNModel(lstm_layer, len(vocab))
model = model.to(device)Training and Prediction
Since now we instantiate two layers with the LSTM model, this rather more complex architecture slows down training considerably.
#@tab all
num_epochs, lr = 500, 2
d2l.train_ch8(model, train_iter, vocab, lr, num_epochs, device)Summary
- In deep RNNs, the hidden state information is passed to the next time step of the current layer and the current time step of the next layer.
- There exist many different flavors of deep RNNs, such as LSTMs, GRUs, or vanilla RNNs. Conveniently these models are all available as parts of the high-level APIs of deep learning frameworks.
- Initialization of models requires care. Overall, deep RNNs require considerable amount of work (such as learning rate and clipping) to ensure proper convergence.
Exercises
- Try to implement a two-layer RNN from scratch using the single layer implementation we discussed in sec_rnn_scratch.
- Replace the LSTM by a GRU and compare the accuracy and training speed.
- Increase the training data to include multiple books. How low can you go on the perplexity scale?
- Would you want to combine sources of different authors when modeling text? Why is this a good idea? What could go wrong?
mxnet
pytorch
