作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想绘制学习曲线以查看神经网络在训练过程中的进展。横轴为总迭代次数,纵轴表示错误率。随着网络训练的进行,我想同时看到测试集和训练集的错误率。
nn <- neuralnet(f,
data = train,
hidden = 2,
linear.output = F,
threshold = 0.01,
stepmax = 10,
lifesign = "full",
learningrate = .1,
algorithm='backprop')
# Try to further train alerady trained net
nn <- neuralnet(f,
data = train,
hidden = 2,
linear.output = F,
threshold = 0.01,
lifesign = "full",
learningrate = .1,
startweights = nn$weights,
algorithm='backprop')
最佳答案
我直接写信给神经网络包的作者之一 Frauke Guenther,并得到了他的明确答复:
“不幸的是,目前,只有当网络收敛时,训练的权重才会被存储。在训练过程中或者网络不收敛的情况下,你可以访问权重还没有实现。”
关于r - R中的神经网络包-如何在训练收敛之前获得权重?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21652677/
我是一名优秀的程序员,十分优秀!