【发布时间】:2016-01-23 06:35:49
【问题描述】:
我正在研究神经网络,我遇到了以下xorcise(那是个笑话!)问题。
我问我的朋友是否需要实现感知器算法来解决这个问题,他说“不用——想想吧”。好吧,我想了想,但我的小猴脑只能想出以下几点:
我朋友的话让我觉得这是一个技巧问题,到目前为止我们讨论的唯一技巧是感知器无法执行 XOR 函数。
这是这个问题的意思吗?
如何解决这个问题?...
A simple Perzeptron with two inputs x₁, x₂,
BIAS, and transfer function y = f(z) = sgn(z),
separates the two dimensional input space into
two parts with help of a line g.
Calculate for this Perzeptron the weights
w1, w2, wb, so that the line separates
the given 6 patterns (pX1, pX2; Py) into
two classes:
1X = (0, 0; -1),
2X = (2, -2; +1),
3X = (7 + ε, 3 - ε; +1),
4X = (7 - ε, 3 + ε; -1),
5X = (0, -2 - ε; +1),
6X = (0 - ε, -2; -1),
Remark: 0 < ε << 1.
【问题讨论】:
标签: machine-learning neural-network xor perceptron