How to implement one vs one multi class classification using libsvm? please help me with this problem.
I also read one vs all approach from this answers...Full example of multiple-class SVM with cross-validation using Matlab [closed]
My testing data : Features and last column is label
D = [
1 1 1 1 1
1 1 1 9 1
1 1 1 1 1
11 11 11 11 2
11 11 11 11 2
11 11 11 11 2
30 30 30 30 3
30 30 30 30 3
30 30 30 30 3
60 60 60 60 4
60 60 60 60 4
60 60 60 60 4
];
My Testing data is
inputTest = [
1 1 1 1
11 11 11 10
29 29 29 30
60 60 60 60
];