Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How does TensorFlow's MultiRnnCell work?

Tags:

tensorflow

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.

like image 966
陶恺大天才 Avatar asked Apr 14 '17 09:04

陶恺大天才


1 Answers

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

like image 118
ruoho ruotsi Avatar answered Nov 07 '22 13:11

ruoho ruotsi