Created
August 19, 2019 23:57
-
-
Save luiscarbonell/e011ab430c69d28104569e71e0fba090 to your computer and use it in GitHub Desktop.
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
// Connect Input Layer to Hidden Layer | |
inputs[0].connect(hiddens[0]); | |
inputs[0].connect(hiddens[1]); | |
inputs[1].connect(hiddens[0]); | |
inputs[1].connect(hiddens[1]); | |
// Connect Hidden Layer to Output Layer | |
hiddens[0].connect(outputs[0]); | |
hiddens[1].connect(outputs[0]); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment