Training: [w, b] = vl_svmtrain(feature_matrix.FeatureVector, label_vector.labelsMatrix, 0.1) ;
Classification:
[~,~,~, scores] = vl_svmtrain(feature_matrix.FeatureVector_temp, labels, 0, 'model', w.w, 'bias', b.b, 'solver', 'none') ;
I have given the labels -1 and 1 while training. When I use the model for classification, it returns scores which are less than -1 and also greater than 1. How do I use these scores for binary classification? What does the score actually mean?