Categories: Deep Learning
Artificial Neuron is the building block of artificial neural network. It is essentially a computational unit which performs the following steps –
- It takes certain inputs and weights.
- Applies dot product on respective inputs & weights and apply summation.
- Apply some transformation using activation function on above summation.
- Fires output.