Closed orangerfun closed 4 years ago
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)
你说得对,感谢提醒,已更正。
gru 在定义模型函数里
应该改成: