Created
November 18, 2016 15:09
-
-
Save 3h4/307bd343036b7fc3c98295f1476d3ad0 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
# Unpack columns | |
inputs_series = tf.split(1, truncated_backprop_length, batchX_placeholder) | |
labels_series = tf.unpack(batchY_placeholder, axis=1) | |
# Forward passes | |
cell = tf.nn.rnn_cell.BasicRNNCell(state_size) | |
states_series, current_state = tf.nn.rnn(cell, inputs_series, init_state) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment