my code is:
cell = tf.contrib.rnn.MultiRNNCell([cell for _ in range(2)])
outputs, state = tf.contrib.rnn.static_rnn(cell, inputs)
now the state is printed like this:
(<tf.Tensor 'loss/model_with_buckets/left_rnn/multi_rnn_cell_2/cell_0/GRUBlockCell/GRUBlockCell:3'
shape=(?, 11) dtype=float32>, <tf.Tensor
'loss/model_with_buckets/left_rnn/multi_rnn_cell_2/cell_1/GRUBlockCell/GRUBlockCell:3'
shape=(?, 11) dtype=float32>)
I don't know why state return two values, and how could I use the state for next step? can anyone helps? thanks.