Displaying 3 results from an estimated 3 matches for "trainind".
Did you mean:
training
2007 Jan 22
0
Recursive-SVM (R-SVM)
...t;Lev_", ladder, sep="")
nTests <- 0
SelFreq <- matrix( 0, nrow=nGene, ncol=length(ladder))
colnames(SelFreq) <- paste("Lev_", ladder, sep="")
## for each CV
for( i in 1:CVnum )
{
## split data
if( CVtype == "LOO" )
{
TestInd <- i
TrainInd <- SampInd[ -TestInd]
} else
{
if( CVtype == "bootstrape" )
{
TrainInd <- sample(SampInd, nSample, replace=T )
TestInd <- SampInd[ which(!(SampInd %in% TrainInd ))]
} else
{
## Nfold
TrainInd <- sample(SampInd, nSample*(CVtype-1)/CVtype )
TestInd <- SampInd[ whic...
2012 Nov 07
5
Calling R object from R function
Hi,
Can you please help me with this please?
What I am trying to do is call a vector from R function and used in the new
function
So I create 4 functions with these arguments
M11 <- function(TrainData,TestData,mdat,nsam) {
ls <- list()
I have few statments one of them is
vectx <- c(,1,2,3,4,5,6,6)
vectz <- c(12,34,5,6,78,9,90)
and then................
ls(vectx=vtecx,vectz=vectz)
2000 Jan 07
0
VQ generation utilities ready + usage instructions
...nce from the ideal probability. .05 (5%) is
default
-i[terations] <maxiterations>
maximum iterations to make while trying to converge
Options are order sensitive. The codebook may be trained on more than one
input data file. Data points from the specified trainind files are stored in
the .vqi file; additional points may be added by subsequent training runs.
************************************************************
Building a codebook header (.vqh) file from the trained set:
Once you have a .vqi file all trained up,
vqbuild file.vqi
will build a .vqh...