Multi-class classification using LIBLINEAR

独自空忆成欢 提交于 2019-12-11 17:49:50

问题


I am a beginner to SVM which i have successfully implemented one-class classification.Now i want to know about multi-class classification which am very much confused about.

I went through How to do multi class classification using Support Vector Machines (SVM) which i want the exact same output but the link does not have a specific example using windows.If anyone can help me out with an example in windows for both “ONE-AGAINST-ONE”,”ONE-AGAINST-ALL” methods of multi-class classification

Thanks


回答1:


Using libLinear you will not be able to have a similar output because it cannot predict probabilities. You should use libSVM for that.

LibLinear does not support multi-class classification by default, but you can download this tool from the official site and it can do the job.

If you want multi-class probability estimate, you can take a look at this tool



来源:https://stackoverflow.com/questions/24639325/multi-class-classification-using-liblinear

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