Displaying 1 result from an estimated 1 matches for "pretest2".
Did you mean:
pretest
2010 Feb 23
0
BUG with LSSVM in R:
...> pretest <- predict(klir, ktest)
> table(pretest,iris[1:148,5])
pretest setosa versicolor virginica
setosa 50 0 0
versicolor 0 49 2
virginica 0 1 46
> ktest2 <- as.kernelMatrix(k[1:147,])
> pretest2 <- predict(klir, ktest2)
> table(pretest2,iris[1:147,5])
pretest2 setosa versicolor virginica
setosa 50 0 0
versicolor 0 49 4
virginica 0 1 43
> ktest3 <- as.kernelMatrix(k[1:146,])
> pretest3 <...