如何计算S形梯度函数的代码

时间:2019-07-26 04:29:04

标签: gradient-descent sigmoid

我一直在尝试计算S型梯度下降的代码。

使用此代码测试后,我得到了错误的答案:

ds= sigmoid(x).*(1-sigmoid(x));

我尝试使用一组x值,但是得到了错误的答案。拜托,我该如何解决?

1 个答案:

答案 0 :(得分:-1)

尝试一下:

function [ output ] = sigmoid( input )
    %output = tanh(input);
    output = 1 / (1 + exp(- input));

然后使用此功能。