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