Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save luiscarbonell/e011ab430c69d28104569e71e0fba090 to your computer and use it in GitHub Desktop.
Save luiscarbonell/e011ab430c69d28104569e71e0fba090 to your computer and use it in GitHub Desktop.
// 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