【发布时间】:2020-10-23 17:26:24
【问题描述】:
我需要一些帮助。我正在使用神经网络 R 页面拟合神经模型,但我未能正确处理。我不断收到 [神经元错误[[i]] %*% weights[[i]] : non-conformable arguments ]
这是我的型号代码
nueralModel <- neuralnet(formula = f, hidden = c(4,2), data = dataTrain,
err.fct = "ce", act.fct = "logistic",
linear.output = FALSE, stepmax = 1000000)
【问题讨论】:
标签: r machine-learning neural-network data-science