标签: gradient-descent sigmoid
我一直在尝试计算S型梯度下降的代码。
使用此代码测试后,我得到了错误的答案:
ds= sigmoid(x).*(1-sigmoid(x));
我尝试使用一组x值,但是得到了错误的答案。拜托,我该如何解决?
x
答案 0 :(得分:-1)
尝试一下:
function [ output ] = sigmoid( input ) %output = tanh(input); output = 1 / (1 + exp(- input));
然后使用此功能。