One option of the SVM classifier (SVC
) is probability
which is false by default. The documentation does not say what it does. Looking at libsvm
source code, it seems to do some sort of cross-validation.
This option does not exist for LinearSVC
nor OneSVM
.
I need to calculate AUC scores for several SVM models, including these last two. Should I calculate the AUC score using decision_function(X)
as the thresholds?