You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 23, 2021. It is now read-only.
Are they in consistent with the (3) and (4) equations in the paper?
I think the line 54 missed the “entrywise product of r_t and h_t-1” and the line 55 also not looks like the equation (4).
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I read the peephole GRU implementation in models.py :
newgate = F.tanh(i_n + resetgate * h_n + p_n) (line54)
hy = newgate + inputgate * (hidden - newgate) . (line 55 )
Are they in consistent with the (3) and (4) equations in the paper?
I think the line 54 missed the “entrywise product of r_t and h_t-1” and the line 55 also not looks like the equation (4).
The text was updated successfully, but these errors were encountered: