Displaying 1 result from an estimated 1 matches for "trt_window".
2012 Sep 21
0
using neural network in R (nnet)
...In Rcode mensioned above, I see ‘r$data’, in all the places, I
just wonder whether training and test data are considered as same!!!
#----------------------------------------------------------------------------------
## training NNET
Nnet <- nnet(x=data, y=class.ind(dat$trt_window),
size=2,rang=0.05,skip=T, decay=0.000001, maxit=500)#
## validation for each lactation
pred <- predict(Nnet, newdata=y, type = "raw")
#-----------------------------------------------------------------------------------
Your help is very much appreciated,...