This repository was archived by the owner on Aug 18, 2021. It is now read-only.
This repository was archived by the owner on Aug 18, 2021. It is now read-only.
Error in practical-pytorch/seq2seq-translation/seq2seq-translation-batched.ipynb #136
Open
Description
In class BahdanauAttnDecoderRNN, Should "word_embedded = self.embedding(word_input).view(1, 1, -1) # S=1 x B x N" be " word_embedded = self.embedding(word_input).view(1, word_input.size(0), -1) # S=1 x B x N"?
Because in the case of this tutorial, batch_size is not equal to 1.(word_input.size(0) is the batch_size)
Metadata
Metadata
Assignees
Labels
No labels