Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

Save victor-iyi/f41e3546423582213b3c76e91f57e764 to your computer and use it in GitHub Desktop.
Neural Network Basics: Part One (features & labels)
X = np.array([ [0, 0, 1], [0, 1, 1], [1, 0, 1], [1, 1, 1] ])
y = np.array([ [0], [1], [1], [0] ])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment