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

edited forward prop formula #180

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
4 changes: 2 additions & 2 deletions 1- Neural Networks and Deep Learning/Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -593,14 +593,14 @@ Here are the course summary as its given on the course [link](https://www.course

```
z[l] = W[l]a[l-1] + b[l]
a[l] = g[l](a[l])
a[l] = g[l](z[l])
```

- Forward propagation general rule for `m` inputs:

```
Z[l] = W[l]A[l-1] + B[l]
A[l] = g[l](A[l])
A[l] = g[l](Z[l])
```

- We can't compute the whole layers forward propagation without a for loop so its OK to have a for loop here.
Expand Down