machine-learning-book
machine-learning-book copied to clipboard
Chapter 15: manual computation of RNN
Errata: page 508
ht = torch.matmul(xt, torch.transpose(w_xh, 0, 1)) + b_hh
should be changed to
ht = torch.matmul(xt, torch.transpose(w_xh, 0, 1)) + b_xh
The code in the repo is correct.
Thanks @vmirly! Would you mind adding this to the Errata document here? https://github.com/rasbt/machine-learning-book/tree/main/ERRATA