如何在weka中创建按需成本文件?
我正在使用weka数据挖掘工具。在 weka 中,我尝试使用元成本分类器对我的数据进行分类。但在执行时,会弹出错误消息“按需成本文件不存在”。
有人知道如何创建按需成本文件吗?
I am using weka data mining tool. In weka I am trying to use metacost classifier to classify my data. But while executing it, there is a error popup saying "On-demand cost file doesn't exist".
Anyone know how to create on-demand cost file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用的是 GUI,
您需要首先创建一个成本矩阵。使用“使用显式成本矩阵”选项,从“成本矩阵”选项创建成本矩阵。您可以简单地使用此选项来训练您的基本分类器。
如果您想要按需选择成本文件选项,请将此成本文件保存为“训练数据的关系名称(arff 文件)”.cost”文件。
当您在 Weka GUI 中选择“按需加载矩阵”时,请为其提供目录路径在“onDemand Directory”中保存成本文件的路径,
请记住,成本文件的名称必须是“训练数据的关系名称加“.cost”。现在您可以按需训练您的基础分类器。
编辑:有关更多详细信息: http://weka.sourceforge.net/doc /weka/classifiers/meta/MetaCost.html
在 weka API 中也类似。
If you are using GUI,
You need to create a cost matrix first. Use "use explicit cost matrix" option, create a cost matrix from "cost matrix" option. You can simply use this option to train your base classifier.
If you want cost file on demand option, save this cost file as "relation name of the training data(arff file) ".cost" file.
When you select "Load matrix on demand" in Weka GUI, provide it with a directory path on "onDemand Directory" for the path where you have saved the cost file.
Remember that your name of the cost file must be "relation name of the training data plus ".cost". Now you can train your base classifier with on-demand cost.
Edit :For more details: http://weka.sourceforge.net/doc/weka/classifiers/meta/MetaCost.html
Its similar in weka API too.