machine-learning-book icon indicating copy to clipboard operation
machine-learning-book copied to clipboard

Chapter 15: manual computation of RNN

Open vmirly opened this issue 2 years ago • 1 comments

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.

vmirly avatar Feb 02 '23 05:02 vmirly

Thanks @vmirly! Would you mind adding this to the Errata document here? https://github.com/rasbt/machine-learning-book/tree/main/ERRATA

rasbt avatar Feb 02 '23 15:02 rasbt