SVM 多类文本分类

发布于 2024-09-11 19:35:52 字数 339 浏览 8 评论 0原文

我想对新闻数据集和训练数据进行分类,并使用IPTC主题代码(层次分类)进行分类。 在我的项目中我应该使用 svm 。

我已经完成了所有的特征提取、词干提取、删除停用词...

我几乎有了 svm multiclass 所需的文件格式:

这就像:

category  feature:value feature:value feature:value

我不知道应该如何使用 svmmulticlass

我也听说过一种反对-所有,我不知道它是什么,

请告诉我在哪里可以找到有关它的教程,或者如何使用它

问候

I want to classfy News data set and training data are classified with IPTC subject code(Hierarchical classification).
In my project I should use svm .

I have done all of feature extraction ,stemming,removing stop word ...

I almost have the file format required for svm multiclass :

which is like:

category  feature:value feature:value feature:value

I don't know how I should use svmmulticlass

I have also hearde about one -against-all ,I dont know what it is

please tell me whrere i can find some tutorial about it ,or how to use it

Regards

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

笛声青案梦长安 2024-09-18 19:35:52

one-against-all,是一种在多标签分类中训练SVM的技术,例如你有“n”类标签:所以你创建一个“n”SVM并在一个类上训练每个SVM作为+Ve标签和所有其他人作为-Ve标签。

这就是一对一的意思。你可以访问这个并使用多类SVM

http://svmlight.joachims.org/svm_multiclass.html< /a>

one -against-all, is a technique to train SVM's its in multi-label classification , for example u have "n" class label : so u create an "n" SVM and train each one on one class as +Ve label and all others as -Ve labels .

this is what one -against-all mean . u can visit this and use there Multi-Class SVM

http://svmlight.joachims.org/svm_multiclass.html

吹泡泡o 2024-09-18 19:35:52

您可能应该首先阅读支持向量分类的实用指南

一个反对的方法是将 SVM(二类分类的自然方法)转换为多类分类器。

You should probably start by reading A Practical Guide to Support Vector Classification

One against all is a method to convert an SVM (a natural method for 2-class classification) into multiclass classifier.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文