Solved – the difference between Sigmoid neurons and Stochastic binary neurons

artificial intelligenceneural networks

Both have the same equation : the logistic unit.
Sigmoid output a ral-valued number between 0 and 1 and Stochastic binary neuron a probability between 0 and 1 too.

Apart from the name/type given to the output (probability or real-valued number) what is the difference between this two types of neurons ?

Best Answer

The only difference is that :

  • The sigmoid neuron is able to output values between 0 and 1.

  • The stochastic binary neurons only can output either a 0 or a 1 with the probability given by the sigmoid activation function.