Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
rasbt authored May 5, 2020
1 parent f4bb301 commit e6b7d9a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions errata/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@

![](images/524-old.png)

- pg. 526, to be more consistent with the text and cover a more general scenario (where padding is not `'same'`), the line `for i in range(0, int(len(x)/s), s):` in the `conv1d` function could be changed to `for i in range(0, int((len(x_padded) - len(w_rot)) / s) + 1, s):`

## Chapter 18

- pg. 713: Not a code error, but the line `self.enf = env` could be changed to `self.env = env` to look more consistent

0 comments on commit e6b7d9a

Please sign in to comment.