sigmoid function and derivative

Sharan Basappa sharan.basappa at gmail.com
Tue Jun 26 23:26:34 EDT 2018


Folks,

I know this is not a machine learning forum but I wanted to see if anyone can explain this to me.

In artificial neural network, I can understand why sigmoid is used but I see that derivative of sigmoid output function is used. I am not able to understand why.

For example:
# convert output of sigmoid function to its derivative
def sigmoid_output_to_derivative(output):
    return output*(1-output)



More information about the Python-list mailing list