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

Update andrewng-p-1-neural-network-deep-learning.md #4

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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