Last active
June 8, 2018 19:21
-
-
Save sbugrov/94de237e8de624ab11f798e03fb271c4 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
// dz2 = dyhat * W3.T * relu'(a2) | |
vector<float> dz2 = dot(dyhat, transpose( &W3[0], 64, 10 ), BATCH_SIZE, 10, 64) * reluPrime(a2); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment