Skip to content

Commit

Permalink
Editted neural networks with one layer equation.
Browse files Browse the repository at this point in the history
  • Loading branch information
us authored Jul 28, 2018
1 parent 0ffd8e4 commit 190dbd6
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 @@ -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 /
```

Expand Down

0 comments on commit 190dbd6

Please sign in to comment.