作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在研究神经网络。我正在探索使用更大的数据集进行训练的效果。目前我得到的结果很糟糕。有什么建议么?我不想使用除 numpy 之外的任何库,请保持简单。我是一名 GCSE 学生,所以我对微积分也不太了解。 为了改善我的网络,我添加了: 第二个隐藏层, 更多纪元, 不同的激活函数(reLU 而不是 sigmoid), 每层更多隐藏节点 ...但我的结果仍然很糟糕!
import numpy as np
x = np.array([
[0000],
[0001],
[0010],
[0100],
[1000],
[0011],
[0110],
[1100],
[1001],
[1001],
[1110],
[1101],
[1011],
[1111],
[1111],
[1111],
[1111]
])
y = np.array([
[0, 1, 0, 0, 0, 1, 0, 0, 1, 1, 0, 1, 1, 1, 1, 1, 1]
]).T
w = np.random.random((1, 1))
w2 = np.random.random((1, 1))
w3 = np.random.random((1, 1))
for j in xrange(500000):
a2 = 1/(1 + np.exp(-(np.dot(x, w))))
a3 = 1/(1 + np.exp(-(np.dot(a2, w2))))
a4 = 1/(1 + np.exp(-(np.dot(a3, w3))))
a4delta = (y - a4) * (a4 * (1 - a4))
a3delta = a4delta.dot(w3.T) * (a3 * (1 - a3))
a2delta = a3delta.dot(w2.T) * (a2 * (1 - a2))
w3 += a3.T.dot(a4delta)
w2 += a2.T.dot(a3delta)
w += x.T.dot(a2delta)
print(a4)
最佳答案
我认为主要问题在于输入 - 在你的情况下 x 是一个具有一个特征的向量;我不认为模型可以从中学习。为什么不制作一个具有 4 个特征的向量?
x = np.array([
[0,0,0,0],
[0,0,0,1],
[0,0,1,0],
[0,1,0,0],
[1,0,0,0],
[0,0,1,1],
[0,1,1,0],
[1,1,0,0],
[1,0,0,1],
[1,0,0,1],
[1,1,1,0],
[1,1,0,1],
[1,0,1,1],
[1,1,1,1],
[1,1,1,1],
[1,1,1,1],
[1,1,1,1]
])
同时更改权重形状:
w = np.random.random((4, 4))
w2 = np.random.random((4, 4))
w3 = np.random.random((4, 1))
通过这些更改,网络给出了良好的结果。
关于numpy - 神经网络不良结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45391164/
我是一名优秀的程序员,十分优秀!