Created
November 18, 2016 22:31
-
-
Save 3h4/2afccd3df84642c35bb1d697748bfffa to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Forward passes | |
cell = tf.nn.rnn_cell.LSTMCell(state_size, state_is_tuple=True) | |
cell = tf.nn.rnn_cell.MultiRNNCell([cell] * num_layers, state_is_tuple=True) | |
states_series, current_state = tf.nn.rnn(cell, inputs_series, initial_state=rnn_tuple_state) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment