Created
June 8, 2018 19:26
-
-
Save sbugrov/4959ff6b09329031d5a947a53cbe8a39 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Updating the parameters | |
W3 = W3 - lr * dW3; | |
W2 = W2 - lr * dW2; | |
W1 = W1 - lr * dW1; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment