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
In DocumentLSTMEmbeddings there is:
self.rnn = torch.nn.GRU(self.embeddings_dimension, hidden_size, num_layers=rnn_layers, bidirectional=self.bidirectional)
which is inconsistent naming. Both GRU and LSTM are type of RNN networks, but GRU is not the same as LSTM.
The text was updated successfully, but these errors were encountered:
flairNLPGH-511: change DocumentLSTMEmbeddings to use LSTM instead of …
678b451
…GRU and add other RNN types to choose from
Merge pull request #512 from kubapok/master
3934bff
GH-511: change DocumentLSTMEmbeddings to use LSTM instead of GRU
fixed in #512 - thanks!!
Sorry, something went wrong.
GH-511: change DocumentLSTMEmbeddings to use LSTM instead of GRU and …
5127ded
…add other RNN types to choose from
No branches or pull requests
In DocumentLSTMEmbeddings there is:
self.rnn = torch.nn.GRU(self.embeddings_dimension, hidden_size, num_layers=rnn_layers, bidirectional=self.bidirectional)
which is inconsistent naming. Both GRU and LSTM are type of RNN networks, but GRU is not the same as LSTM.
The text was updated successfully, but these errors were encountered: