-
Notifications
You must be signed in to change notification settings - Fork 29
New issue
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
Trainable decay scheme issue #3
Comments
This is worth fixing! Otherwise it's decaying the current imputed value. |
@Thartvigsen I noticed this issue not fixed yet in the code!!!! |
@DeepWolf90 For now, update the equations in your local version so they are accurate. I'm sure the author is aware of the bug by now. Hopefully it'll be sorted out soon! |
Hi @CameronSCarlin, |
GRU-D/GRUD.py
Line 120 in 9f877f8
Hi,
My understanding of Equation 11 in the GRU-D paper is that the two x values on the right side of this equation are supposed to be different values. I believe mask * x to be correct, as that is multiplying x of the current time step. However, I believe delta_x * x is incorrect, as this x should be the value of x most recently observed prior to the current time step t.
The text was updated successfully, but these errors were encountered: