Created
November 12, 2017 21:20
-
-
Save victor-iyi/724974f97f97954982181b6b1fef63d3 to your computer and use it in GitHub Desktop.
Neural network Basics: Part One (weight initialization)
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
| W0 = 2 * np.random.random(size=[input_dim, hidden_dim]) - 1 | |
| W1 = 2 * np.random.random(size=[hidden_dim, output_dim]) - 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment