如何使用Pyml得到的分类器

发布于 2024-11-03 10:35:53 字数 336 浏览 1 评论 0原文

我是 Python 中 PyML 的新用户。使用 教程,我执行了以下操作:

from PyML import *
data = SparseDataSet("heart")
s = SVM()
s.train(data) 
r = s.cv(data,5)

我得到了结果集 r ,但我不明白如何使用这个结果集来用Python对一个全新的实例进行分类。有更有经验的人可以帮助我吗?任何建议将不胜感激。

谢谢。

I am a new user of PyML in Python. Using the tutorial, I did the following:

from PyML import *
data = SparseDataSet("heart")
s = SVM()
s.train(data) 
r = s.cv(data,5)

I got the resultset r, but I don't understand how to use this resultset to classify a totally new instance with Python. Can anyone more experienced help me? Any suggestions will be appreciated.

Thanks.

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

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

发布评论

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

评论(1

等数载,海棠开 2024-11-10 10:35:53

在 r = s.sv(data,5) 中,您正在进行交叉验证,用于通过在数据集的不同部分上训练和测试 5 次来衡量分类器性能。当您的目标是对新实例进行分类时,这不是必需的。

要对新实例进行分类,您最好将它们放在不同的数据集中,并在训练后使用 SVM 对象的测试方法:

s = SVM()
s.train(trainingDataset)
r = s.test(testDataset)

然后您将在 testDataset 中获得对新实例进行分类的结果。
使用 s.test() 的一个选项是使用 s.classify(data, i) 和 s.decisionFunc(data, i)用于在训练后对各个数据点进行分类,但在教程文档中不建议这样做,因为您将无法获得结果对象中包含的额外结果信息(就像从 s.test 中获得的那样,s.cvs.stratifiedCV 方法)。

In r = s.sv(data,5) you are doing crossvalidation, which is used to measure classifier performance by training and testing 5 times on different parts of the dataset. This is not necessary when your objective is to classify new instances.

To classify new instances, you should preferably have these in a different dataset and use the test method of the SVM object after training:

s = SVM()
s.train(trainingDataset)
r = s.test(testDataset)

You will then have the results from classifying new instances in testDataset.
An option to using s.test() is to use s.classify(data, i) and s.decisionFunc(data, i) for classifying individual data points after training, but this is not recommended in the tutorial documentation as you will not get the extra result information contained in a result object (like you get from s.test, s.cv or s.stratifiedCV methods).

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