search for: heap_nnet

Displaying 1 result from an estimated 1 matches for "heap_nnet".

2010 Jan 29
0
Help interpreting libarary(nnet) script output..URGENT
...nput from different regions of interest (fMRI data). The script that I am using is this: library (MASS) heap_lda <- data.frame(as.matrix(t(read.table(file="R_10_5runs_matrix9.txt")))*100000,syll = c(rep("heap",3),rep("hoop",3),rep("hop",3))) library(nnet) heap_nnet <- nnet(syll ~ ., data=heap_lda, size=12,iter=100,MaxNWts=10000) predict(heap_nnet,heap_lda,type = "class") table(predict(heap_nnet,heap_lda,type = "class"),heap_lda$syll) # do leave-one-out crossvalidation... heap_nnet.out<-NULL all = c(1:9) for(n in all){ heap_nnet...