Skip to content

Commit

Permalink
change 'alpa' to 'alpha'
Browse files Browse the repository at this point in the history
  • Loading branch information
jenglamlow authored Jul 30, 2019
1 parent 62e6aa0 commit 952535c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions 1- Neural Networks and Deep Learning/Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -271,9 +271,9 @@ Here are the course summary as its given on the course [link](https://www.course
db/= m
# Gradient descent
w1 = w1 - alpa * dw1
w2 = w2 - alpa * dw2
b = b - alpa * db
w1 = w1 - alpha * dw1
w2 = w2 - alpha * dw2
b = b - alpha * db
```

- The above code should run for some iterations to minimize error.
Expand Down

0 comments on commit 952535c

Please sign in to comment.