Reputation: 295
Could someone help to explain the inner mechanism of TensorFlow's tf.contrib.rnn.MultiRnnCell
?
For example, if I wanted to stack up two basic RNN cells into a MultiRnnCell
, what would be the input and output of each basic RNN cell?
I would like to know the details of how it works.
Upvotes: 29
Views: 16517
Reputation: 1313
Study this blog post as well as the provided implementation. It describes in detail how use MultiRNNCell to stack multiple RNN cells.
Upvotes: 36