Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions andrewng-p-1-neural-network-deep-learning.md
Original file line number Diff line number Diff line change
Expand Up @@ -612,8 +612,9 @@ Here are the course summary as its given on the course [link](https://www.course
### Getting your matrix dimensions right

- The best way to debug your matrices dimensions is by a pencil and paper.
- Dimension of `W` is `(n[l],n[l-1])` . Can be thought by right to left.
- Dimension of `b` is `(n[l],1)`
- Dimension of `W[l]` is `(n[l],n[l-1])` . Can be thought by right to left.
- Dimension of `b[l]` is `(n[l],1)`
- l=layer, n= number of nodes in a layer 'l'
- `dw` has the same shape as `W`, while `db` is the same shape as `b`
- Dimension of `Z[l],` `A[l]`, `dZ[l]`, and `dA[l]` is `(n[l],m)`

Expand Down