Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In every book and example always they show only binary classification (two classes) and new vector can belong to any one class.

Here the problem is I have 4 classes(c1, c2, c3, c4). I've training data for 4 classes.

For new vector the output should be like

C1 80% (the winner)

c2 10%

c3 6%

c4 4%

How to do this? I'm planning to use libsvm (because it most popular). I don't know much about it. If any of you guys used it previously please tell me specific commands I'm supposed to use.

share|improve this question

6 Answers

LibSVM uses the one-against-one approach for multi-class learning problems. From the FAQ:

Q: What method does libsvm use for multi-class SVM ? Why don't you use the "1-against-the rest" method ?

It is one-against-one. We chose it after doing the following comparison: C.-W. Hsu and C.-J. Lin. A comparison of methods for multi-class support vector machines, IEEE Transactions on Neural Networks, 13(2002), 415-425.

"1-against-the rest" is a good method whose performance is comparable to "1-against-1." We do the latter simply because its training time is shorter.

share|improve this answer

Commonly used methods are One vs. Rest and One vs. One. In first case you get n classifiers and the resulting class with have highest score In the second class the resulting class is obtained by majority vote of all classifiers.

AFAIR, libsvm supports both strategies of multiclass.

share|improve this answer
2  
I thought libsvm only supports one vs. one. But it works really well, though. – Steve Tjoa Jan 18 '10 at 5:48

There's a terrific chapter about SVM in Toby Segaren's "Programming Collective Intelligence". I recommend it highly.

share|improve this answer
Isn't the matchmaker example in this chapter, a binary classification example? – mlguy Dec 25 '09 at 11:38

You can always reduce a multi-class classification problem to a binary problem by choosing random partititions of the set of classes, recursively. This is not necessarily any less effective or efficient than learning all at once, since the sub-learning problems require less examples since the partitioning problem is smaller. (It may require at most a constant order time more, e.g. twice as long). It may also lead to more accurate learning.

I'm not necessarily recommending this, but it is one answer to your question, and is a general technique that can be applied to any binary learning algorithm.

share|improve this answer

Use the SVM Multiclass library. Find it at the SVM page by Thorsten Joachims

share|improve this answer

libsvm supports multi-class classification (see official web site). In your training file, each class must be represented by a distinct double, such as : C1 => 1.0 ; c2 => 2.0 ; c3 => 3.0 ; c4 => 4.0.

You can then predict probabilities for each class using the "svm_predict_probability" method.

NB : make sure svm parameters are correctly defined : param.probability must be set to 1.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.