Created
November 18, 2016 22:01
-
-
Save 3h4/bc7801435629bf36788666a663ffaaf2 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
cell_state = tf.placeholder(tf.float32, [batch_size, state_size]) | |
hidden_state = tf.placeholder(tf.float32, [batch_size, state_size]) | |
init_state = tf.nn.rnn_cell.LSTMStateTuple(cell_state, hidden_state) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment