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

Chapter 15: manual computation of RNN #106

Open
vmirly opened this issue Feb 2, 2023 · 1 comment
Open

Chapter 15: manual computation of RNN #106

vmirly opened this issue Feb 2, 2023 · 1 comment

Comments

@vmirly
Copy link

vmirly commented Feb 2, 2023

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.

@rasbt
Copy link
Owner

rasbt commented Feb 2, 2023

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

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

2 participants