Created
November 12, 2017 20:07
-
-
Save victor-iyi/f41e3546423582213b3c76e91f57e764 to your computer and use it in GitHub Desktop.
Neural Network Basics: Part One (features & labels)
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
| 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