This is the cell of a Neural Net. Holds an activation which is a continuous number from to .
- A neuron is ‘lit up’ if its activation is 1
- A neuron is ‘dark’ if its activation is 0
Activation Formula
Where:
- is the current neuron’s activation
- are all the previous neurons in the last Layer
- are Weights
- is the Activation Function
- is the Bias
Example
For a given image, a neuron could represent a single pixel’s light. Then, Layers could be used to represent each row of pixels in the neural network.
Neurons as Features
The hope for a neuron is that it is able to represent some tangible feature of an output. Like a loop of an image is from one neuron. Neuron Superposition attempts to disprove this.