Created
April 10, 2018 17:22
-
-
Save jamesr66a/bc26918bcdb3fb6ae542984a0b971915 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
scan_outputs_0 = ... | |
hidden_0 = ... | |
for t in range(timesteps): | |
scan_outputs_0[t], hidden_0 = LSTM(inputs[t], hidden_0) | |
scan_outputs_1 = ... | |
hidden_1 = ... | |
for t in range(timesteps): | |
scan_outputs_1[t], hidden_1 = LSTM(scan_outputs_0[t], hidden_1) | |
scan_outputs_2 = ... | |
hidden_2 = ... | |
for t in range(timesteps): | |
scan_outputs_2[t] = LSTM(scan_outputs_1[t], hidden_2) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment