这是代码:
import numpy as np
# sigmoid function
def nonlin(x,deriv=False):
if(deriv==True):
return x*(1-x)
return 1/(1+np.exp(-x))
# input dataset
X = np.array([ [0,0,1],
[0,1,1],
[1,0,1],
[1,1,1] ])
# output dataset
y = np.array([[0,0,1,1]]).T
# seed random numbers to make calculation
# deterministic (just a good practice)
np.random.seed(1)
# initialize weights randomly with mean 0
syn0 = 2*np.random.random((3,1)) - 1
for iter in xrange(10000):
# forward propagation
l0 = X
l1 = nonlin(np.dot(l0,syn0))
# how much did we miss?
l1_error = y - l1
# multiply how much we missed by the
# slope of the sigmoid at the values in l1
l1_delta = l1_error * nonlin(l1,True)
# update weights
syn0 += np.dot(l0.T,l1_delta)
print "Output After Training:"
print l1
这是网站:http: //iamtrask.github.io/2015/07/12/basic-python-network/
代码的第 36 行,l1 error
乘以带有权重的输入的导数。我不知道为什么会这样做,并且一直在花费数小时试图弄清楚。我刚刚得出的结论是这是错误的,但是考虑到有多少人推荐并使用本教程作为学习神经网络的起点,有些事情告诉我这可能是不正确的。
在文章中,他们说
再看一下sigmoid图片!如果斜率真的很浅(接近 0),那么网络要么具有非常高的值,要么具有非常低的值。这意味着该网络以一种或另一种方式非常自信。但是,如果网络猜到了接近 (x=0, y=0.5) 的东西,那么它就不是很自信。
我似乎无法理解为什么 sigmoid 函数的输入的高低与置信度有任何关系。当然,它有多高并不重要,因为如果预测的输出很低,那么它将真的很不自信,不像他们所说的那样应该有信心,因为它很高。
l1_error
如果您想强调错误,肯定会更好吗?
考虑到到那时我终于找到了一种很有前途的方法来真正直观地开始学习神经网络,这真是令人失望,但我又错了。如果您有一个开始学习的好地方,我可以很容易地理解,那将不胜感激。