0

I am using LIBLINEAR and i need to know whether Multi-Label Prediction in windows is possible or not.I tried google but no luck

I want the output to be produced the following way

I train some 10 documents with three class labels 1,2,3 and now when i feed a test document to the classifier and if the document belongs to label 1 and 2 then it should produce 1,2 or something else which shows that document belongs to 1 and 2 both the class labels

I want an example in windows

Thanks

user1051536
  • 185
  • 2
  • 3
  • 9
  • possible duplicate of [Multi-class classification using LIBLINEAR](http://stackoverflow.com/questions/24639325/multi-class-classification-using-liblinear) – greeness Sep 25 '14 at 00:36

1 Answers1

0

By default neither libSvm nor LibLinear supports multiclass classification.

You need to perform a One against all approach.

You can find help on the libsvm page which provides different tools for multi-label classification that are based on LIBSVM or LIBLINEAR

alexandrekow
  • 1,927
  • 2
  • 22
  • 40