Currently I am using libsvm 3.18 to do multi-class classification with probability-estimates. So does it require to:
normalize the labels. For examples, I have data with 3 labels: 120, 125, 131, and do I have to convert them to 0, 1, 2?
sort the data by labels?
OpenCV's SVM has some code to 'prepare the data', looks like it did the above two things so I am asking if it is also the case when using libsvm