Skip to content

Instantly share code, notes, and snippets.

@victor-iyi
Created November 12, 2017 21:20
Show Gist options
  • Select an option

  • Save victor-iyi/88d9a314e92a242e24c3da30ba636632 to your computer and use it in GitHub Desktop.

Select an option

Save victor-iyi/88d9a314e92a242e24c3da30ba636632 to your computer and use it in GitHub Desktop.
Neural network Basics: Part One (weight initialization)
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