Derivative of sigmoid

前端 未结 4 689
闹比i
闹比i 2021-02-02 11:00

I\'m creating a neural network using the backpropagation technique for learning.

I understand we need to find the derivative of the activation function used. I\'m using

4条回答
  •  隐瞒了意图╮
    2021-02-02 11:40

    You can use the output of your sigmoid function and pass it to your SigmoidDerivative function to be used as the f(x) in the following:

    dy/dx = f(x)' = f(x) * (1 - f(x))
    

提交回复
热议问题