deep-learning-v2-pytorch icon indicating copy to clipboard operation
deep-learning-v2-pytorch copied to clipboard

Character_Level_RNN_Solution uses future information to predict characters?

Open barimani opened this issue 2 years ago • 0 comments

Under recurrent-neural-networks/char-rnn/Character_Level_RNN_Solution.ipynb:

The CharRNN design is using a LSTM layer that is uni-directional however with a fully connected on top of the output sequence, it seems like the information from future predictions are leaked back into the early predictions. The model is then used differently at inference time to make predictions. Is this intended or am I missing something?

barimani avatar Sep 10 '23 17:09 barimani