Skip to content
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

Calculation discrepency exists in gru_unit_op and gru_op #5493

Closed
guoshengCS opened this issue Nov 8, 2017 · 0 comments
Closed

Calculation discrepency exists in gru_unit_op and gru_op #5493

guoshengCS opened this issue Nov 8, 2017 · 0 comments
Assignees

Comments

@guoshengCS
Copy link
Contributor

The calculations for final output are different between gru_unit_op and gru_op:

  • gru_op
 h_t = dot((1 - u_t), h_{t-1}) + dot(u_t, {h}_t)
  • gru_unit_op
 h_t = dot((1 - u_t), {h}_t) + dot(u_t, h_{t-1})
@guoshengCS guoshengCS changed the title Calculation discrepency exists in gru_unit_op and gru_o Calculation discrepency exists in gru_unit_op and gru_op Nov 8, 2017
@guoshengCS guoshengCS self-assigned this Nov 8, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant