My classification problem has 4 classes.
If I use inbuilt LIBSVM library in which one-one approach is used, and check the dimension of support vector coefficient ie, model.sv_coef, it is 53 x 3. where 53 is the number of support vectors.
But, if I use one-rest approach for classification using LIBSVM model. then the dimension of support vector coefficient, i.e. model.sv_coef is 58 X 1.(58:nsv).
Why by one-one approach 3 columns and using one-rest, it is only 1.