Skip to content

Commit

Permalink
adding the correct dimensions
Browse files Browse the repository at this point in the history
  • Loading branch information
abhagat-splunk committed Aug 22, 2018
1 parent 47907fd commit a9f29e3
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 @@ -387,7 +387,7 @@ Here are the course summary as its given on the course [link](https://www.course
- `b1` is the matrix of the first hidden layer, it has a shape of `(noOfHiddenNeurons,1)`
- `z1` is the result of the equation `z1 = W1*X + b`, it has a shape of `(noOfHiddenNeurons,1)`
- `a1` is the result of the equation `a1 = sigmoid(z1)`, it has a shape of `(noOfHiddenNeurons,1)`
- `W2` is the matrix of the second hidden layer, it has a shape of `(1,noOfHiddenLayers)`
- `W2` is the matrix of the second hidden layer, it has a shape of `(1,noOfHiddenNeurons)`
- `b2` is the matrix of the second hidden layer, it has a shape of `(1,1)`
- `z2` is the result of the equation `z2 = W2*a1 + b`, it has a shape of `(1,1)`
- `a2` is the result of the equation `a2 = sigmoid(z2)`, it has a shape of `(1,1)`
Expand Down

0 comments on commit a9f29e3

Please sign in to comment.