Artificial Neuron is a model of creatures' neuron. The architecture of Artificial Neuron is as follows.
It accepts multiple inputs, and exports outputs after a defined process, which multiplies each input with prepared coefficient, and sum up all values.
Suppose the number of inputs is N, and see how the calculation works.
Multiply an input with a pre-defined coefficient The is called Weight. Multiply all inputs with corresponding coefficients, and sum up all values. And then, add a value . The output is . Where, the value is called Bias. Finally, apply a function to the output value. The final output is . Where, the function is called Activation Function.
The formulas of the calculation process above are as follows.