search for: rprop

Displaying 2 results from an estimated 2 matches for "rprop".

Did you mean: prop
2005 May 25
0
Error with user defined split function in rpart (PR#7895)
...right.wt <- sum(wt) - left.wt lp <- temp/left.wt rsum <- matrix(nrow=1, ncol=n-1, data=0); for (i in seq(1, n-1)) { for (j in seq(i+1, n)) { rsum[i] <- rsum[i] + y[j]; } } rp <- rsum/right.wt lprop <- 1 - lp; rprop <- rp; # Get the direction direc <- matrix(nrow=1, ncol=length(lp), data=1); for (i in seq(1, length(lp))) { if (lprop[i] >= rprop[i]) direc[i] <- -1; } goodness <- (lprop + rprop); ret <- list(goodness= goodness, direction=di...
2009 Jul 24
1
nnet library and FANN package'm
Hello ! I'd like to know to which of the FANN package network corresponds the R nnet network ? In more details, what is the R nnet activation function, what is the training algorithm (rprop, quickprop, ...) ? Also, it seems that the R nnet "decay" parameter in nnet corresponds to the "learning_rate" parameter in FANN. Correct ? Many thanks in advance ! Luc Moulinier IGBMC Strasbourg -- View this message in context: http://www.nabble.com/nnet-library-and-FANN-pac...