陶恺大天才
陶恺大天才

Reputation: 295

How does TensorFlow's MultiRnnCell work?

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

Answers (1)

ruoho ruotsi
ruoho ruotsi

Reputation: 1313

Study this blog post as well as the provided implementation. It describes in detail how use MultiRNNCell to stack multiple RNN cells.

enter image description here

Upvotes: 36

Related Questions