Skip to content

Instantly share code, notes, and snippets.

@sbugrov
Created June 8, 2018 19:22
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/8491c3aa0b359ba2e28155b8768b67bf to your computer and use it in GitHub Desktop.
Save sbugrov/8491c3aa0b359ba2e28155b8768b67bf to your computer and use it in GitHub Desktop.
// dz1 = dz2 * W2.T * relu'(a1)
vector<float> dz1 = dot(dz2, transpose( &W2[0], 128, 64 ), BATCH_SIZE, 64, 128) * reluPrime(a1);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment