generate some output(s) in response to that input, and pass it downstream
Biology: activation
neurones respond to stimulii
threshold-y
approximately digital output (on/off)
sometimes complex behaviour about inputs
Biology: networks of neurones
neurones are usually found in networks
can produce complex and sophisticated behaviours in a robust way
non-obvious relationships between structure and function
Machines: the node
Here’s a simple representation of a node, implemented in code, that we might find in a neural network:
Machines: activation functions
Here are some example input:output pairs for our node:
there are lots of possible activation functions
a simple one: NOT
our node outputs TRUE when we input FALSE, and vice versa
This flexibility means that we can build networks of nodes (hence neural networks). Again, a very simple example:
Activation functions can be extremely simple
node <-function(input){!input}node(TRUE)
[1] FALSE
Machines: networks of nodes
Machines: networks of nodes
nodes are usually found in networks
can produce complex and sophisticated behaviours in a robust way
again, non-obvious relationships between structure and function in artifical neural networks (ANN)
A user supplies some input. That input is fed into an input node(s), which processes the input, and produces three different outputs that are then fed into a second layer of nodes. Further processing happens in this hidden layer, leading to three outputs that are integrated together in a final output node that processes the outputs of the hidden layer into a single output.