Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save luiscarbonell/26db20742e3c0b624f0bc6d62b4204d7 to your computer and use it in GitHub Desktop.
Save luiscarbonell/26db20742e3c0b624f0bc6d62b4204d7 to your computer and use it in GitHub Desktop.
const inputs = [new Neuron(), new Neuron()]; // Input Layer w/ 2 neurons
const hiddens = [new Neuron(), new Neuron()]; // Hiddent Layer w/ 2 neurons
const outputs = [new Neuron()]; // Output Layer w/ 1 neuron
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment