Skip to content

Commit

Permalink
a small misuse of "l" and "1"
Browse files Browse the repository at this point in the history
  • Loading branch information
xfge authored Jul 9, 2018
1 parent 84ffe23 commit 044b0fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 1- Neural Networks and Deep Learning/Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -642,7 +642,7 @@ Here are the course summary as its given on the course [link](https://www.course
dZ[l] = dA[l] * g'[l](Z[l])
dW[l] = (dZ[l]A[l-1].T) / m
db[l] = sum(dZ[l])/m # Dont forget axis=1, keepdims=True
dA[l-1] = w[l].T * dZ[1] # The multiplication here are a dot product.
dA[l-1] = w[l].T * dZ[l] # The multiplication here are a dot product.
Output dA[l-1], dW[l], db[l]
```
Expand Down

0 comments on commit 044b0fe

Please sign in to comment.