标签: r machine-learning neural-network
只是想知道您是否可以帮助我将神经网络回归的初始权重设置为零。
我一直在尝试这段代码,但是它一直采用随机起始权重:
nn<-neuralnet(f,data=historico,hidden=c(1),linear.output = T,rep=1,likelihood=F,startweights = c(1:ncol(historico))*0, algorithm='rprop+')
谢谢大家!