Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@sbugrov
Last active June 8, 2018 19:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sbugrov/94de237e8de624ab11f798e03fb271c4 to your computer and use it in GitHub Desktop.
Save sbugrov/94de237e8de624ab11f798e03fb271c4 to your computer and use it in GitHub Desktop.
// 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