Multi-label prediction using LIBLINEAR

浪子不回头ぞ 提交于 2019-12-13 04:34:20

问题


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


回答1:


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



来源:https://stackoverflow.com/questions/24685255/multi-label-prediction-using-liblinear

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!