我想计算带有输入层和输出层的 sigmoid 神经元的非线性边界。神经元有 2 个输入 x1、x2 和一个偏差。我正在尝试计算这个。
这是怎么做的。对于感知器,如果
w*x +b >= 0 for negative samples then
we perform w = w -x[![enter image description here][2]][2]
and if w*x+b <0 for positive samples then
w = w + x
直到错误减少到一个较低的值。我正在使用 Octave 进行此计算。
是否有 Sigmoid 神经元的迭代方法。我们如何获得非线性边界?