We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I think there might be a wrong in the model.py.
def forward(self, input, hidden, return_hiddens=False, noise=False): emb = self.drop(self.encoder(input.contiguous().view(-1,self.enc_input_size))) # [(seq_len x batch_size) * feature_size] emb = emb.view(-1, input.size(1), self.rnn_hid_size) # [ seq_len * batch_size * feature_size]
where emb is the input of self.rnn, so I think self.rnn_hid_size should be changed to self.rnn_input_size Looking forward to your reply
emb
self.rnn
self.rnn_hid_size
self.rnn_input_size
The text was updated successfully, but these errors were encountered:
original: emb = emb.view(-1, input.size(1), self.rnn_hid_size) to: emb = emb.view(-1, input.size(1), self.rnn_input_size)
emb = emb.view(-1, input.size(1), self.rnn_hid_size)
emb = emb.view(-1, input.size(1), self.rnn_input_size)
Sorry, something went wrong.
No branches or pull requests
I think there might be a wrong in the model.py.
where
emb
is the input ofself.rnn
, so I thinkself.rnn_hid_size
should be changed toself.rnn_input_size
Looking forward to your reply
The text was updated successfully, but these errors were encountered: