Skip to content

Commit

Permalink
Fixed minor formatting issues
Browse files Browse the repository at this point in the history
Fixed spacing issues on Neural Networks and Deep Learning Readme.md
  • Loading branch information
dotslash21 authored Jul 16, 2019
1 parent 62e6aa0 commit 4a2e942
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions 1- Neural Networks and Deep Learning/Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -227,13 +227,13 @@ Here are the course summary as its given on the course [link](https://www.course
- Lets say we have these variables:

```
X1 Feature
X1 Feature
X2 Feature
W1 Weight of the first feature.
W2 Weight of the second feature.
B Logistic Regression parameter.
M Number of training examples
Y(i) Expected output of i
Y(i) Expected output of i
```

- So we have:
Expand All @@ -246,7 +246,7 @@ Here are the course summary as its given on the course [link](https://www.course
d(z) = d(l)/d(z) = a - y
d(W1) = X1 * d(z)
d(W2) = X2 * d(z)
d(B) = d(z)
d(B) = d(z)
```

- From the above we can conclude the logistic regression pseudo code:
Expand Down Expand Up @@ -472,7 +472,7 @@ Here are the course summary as its given on the course [link](https://www.course
- Derivation of Sigmoid activation function:

```
g(z) = 1 / (1 + np.exp(-z))
g(z) = 1 / (1 + np.exp(-z))
g'(z) = (1 / (1 + np.exp(-z))) * (1 - (1 / (1 + np.exp(-z))))
g'(z) = g(z) * (1 - g(z))
```
Expand Down

0 comments on commit 4a2e942

Please sign in to comment.