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
gru 在定义模型函数里
H_tilda = torch.tanh(torch.matmul(X, W_xh) + R *torch.matmul(H, W_hh) + b_h)
应该改成:
H_tilda = torch.tanh(torch.matmul(X, W_xh) + torch.matmul((R*H), W_hh) + b_h)
The text was updated successfully, but these errors were encountered:
fix bug in GRU #88
73cddeb
你说得对,感谢提醒,已更正。
Sorry, something went wrong.
No branches or pull requests
gru 在定义模型函数里
应该改成:
The text was updated successfully, but these errors were encountered: