Created
June 15, 2018 04:21
-
-
Save Alescontrela/11fa60d9e62379d093f762f54ef662a1 to your computer and use it in GitHub Desktop.
This file contains 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
z = w3.dot(fc) + b3 # first dense layer | |
z[z<=0] = 0 # pass through ReLU non-linearity | |
out = w4.dot(z) + b4 # second dense layer |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment