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
xLSTM/xlstm_torch/main.py
Line 96 in 020209f
On this line, c_hat is passed through tanh, but in the final paper, h_tilda (a.k.a. c_hat here) is only c_t / n_t, so h_t should be:
c_hat
tanh
h_tilda
c_t / n_t
h_t
h_t = self.sigmoid(o_tilda) * c_hat
Excerpt from Section A.2 of the final paper:
Here, the cell input activation function φ is tanh, the hidden state activation function is the identity. φ helps stabilizing the recurrence.
The text was updated successfully, but these errors were encountered:
Stale issue message
Sorry, something went wrong.
No branches or pull requests
xLSTM/xlstm_torch/main.py
Line 96 in 020209f
On this line,
c_hat
is passed throughtanh
, but in the final paper,h_tilda
(a.k.a.c_hat
here) is onlyc_t / n_t
, soh_t
should be:Excerpt from Section A.2 of the final paper:
Upvote & Fund
The text was updated successfully, but these errors were encountered: