We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 035c814 commit eee1a0eCopy full SHA for eee1a0e
examples/lstm_seq2seq.py
@@ -113,7 +113,7 @@
113
for t, char in enumerate(input_text):
114
encoder_input_data[i, t, input_token_index[char]] = 1.
115
for t, char in enumerate(target_text):
116
- # decoder_target_data is ahead of decoder_target_data by one timestep
+ # decoder_target_data is ahead of decoder_input_data by one timestep
117
decoder_input_data[i, t, target_token_index[char]] = 1.
118
if t > 0:
119
# decoder_target_data will be ahead by one timestep
0 commit comments