I want to use SVM using 10-fold cross-validation (CV). My code is as follows:
svm.model <- svm(train.d, y=train.l,
type='C-classification',
cross=kfold,
kernel=kernel)
I know that in k-fold CV, k
different models are trained. Which of those k
models is the final svm.model
? Is it the trained model with maximum accuracy?