Displaying 1 result from an estimated 1 matches for "pretest3".
Did you mean:
pretest
2010 Feb 23
0
BUG with LSSVM in R:
...gt; 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 <- predict(klir, ktest3)
> table(pretest3,iris[1:146,5])
pretest3 setosa versicolor virginica
setosa 50 0 0
versicolor 0 49 2
virginica 0 1 44
> ktest4 <- as.kernelMatrix(k[1:145,])
> pretest4 <...