level 4
笑而不语的谁
楼主
对于交叉熵函数的学习规则,如果输出节点的激活函数是sigmoid,那么增量等于输出误差.
e = d - y;
delta = e;
与前面的示例代码不同,这里不再使用sigmoid函数的导数。
Unlike the previous example code, the derivative of the sigmoid function no longer exists.
这是因为,对于交叉熵函数的学习规则,如果输出节点的激活函数是sigmoid,那么增量等于输出误差。
请问下,这个delta=e是怎么通过sigmoid函数以及交叉熵计算出来的
2021年01月23日 08点01分
1
e = d - y;
delta = e;
与前面的示例代码不同,这里不再使用sigmoid函数的导数。
Unlike the previous example code, the derivative of the sigmoid function no longer exists.
这是因为,对于交叉熵函数的学习规则,如果输出节点的激活函数是sigmoid,那么增量等于输出误差。
请问下,这个delta=e是怎么通过sigmoid函数以及交叉熵计算出来的