diff --git a/1- Neural Networks and Deep Learning/Readme.md b/1- Neural Networks and Deep Learning/Readme.md index 52df16ce..f4711009 100644 --- a/1- Neural Networks and Deep Learning/Readme.md +++ b/1- Neural Networks and Deep Learning/Readme.md @@ -357,7 +357,7 @@ Here are the course summary as its given on the course [link](https://www.course ``` X1 \ - X2 => z1 = XW1 + B1 => a1 = Sigmoid(a1) => z2 = a1W2 + B2 => a2 = Sigmoid(z2) => l(a2,Y) + X2 => z1 = XW1 + B1 => a1 = Sigmoid(z1) => z2 = a1W2 + B2 => a2 = Sigmoid(z2) => l(a2,Y) X3 / ```