- Train the SVM on 9 folds, test on the 1 remaining fold.
- Collect predictions and compare with true labels.
- Sum up true positives (TP), true negatives (TN), false positives (FP), and false negatives (FN).
- Calculate: Accuracy: ((TP+TN)/(TP+TN+FP+FN)) , Sensitivity: (TP/(TP+FN)), Specificity: (TN/(TN+FP))