Created
November 18, 2016 22:17
-
-
Save 3h4/e887f4d1d74d8389899ced40d68bef6b 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
_total_loss, _train_step, _current_state, _predictions_series = sess.run( | |
[total_loss, train_step, current_state, predictions_series], | |
feed_dict={ | |
batchX_placeholder: batchX, | |
batchY_placeholder: batchY, | |
cell_state: _current_cell_state, | |
hidden_state: _current_hidden_state | |
}) | |
_current_cell_state, _current_hidden_state = _current_state | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment