关于在 Weka 中调查样本的初学者问题
我刚刚使用 Weka 在“Classify”标签下训练我的 SVM 分类器。 现在我想进一步调查哪些数据样本被错误分类,我需要研究它们的模式,但我不知道从Weka哪里看这个。 有人可以给我一些帮助吗? 提前致谢。
I've just used Weka to train my SVM classifier under "Classify" tag.
Now I want to further investigate which data samples are mis-classified,I need to study their pattern,but I don't know where to look at this from Weka.
Could anyone give me some help please?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以从以下位置启用该选项:
您将获得以下实例预测:
编辑
As我在评论中解释过,您可以使用 StratifiedRemoveFolds 过滤器手动分割数据并创建 10 倍的交叉验证。
Weka wiki 中的这个 Primer 有一些如何从命令行调用 Weka 的示例。这是一个示例 bash 脚本:
对于每个折叠,这将创建两个数据集(训练/测试)并将预测存储在文本文件中。这样您就可以将每个索引与测试集中的实际实例进行匹配。
当然,如果您愿意的话,也可以在 GUI 中完成同样的操作(只是有点乏味!)
You can enable the option from:
You will get the following instance predictions:
EDIT
As I explained in the comments, you can use the StratifiedRemoveFolds filter to manually split the data and create the 10-folds of the cross-validation.
This Primer from the Weka wiki has some examples of how to invoke Weka from the command line. Here's a sample bash script:
For each fold, this will create two datasets (train/test) and store the predictions in a text file as well. That way you can match each index with the actual instance in the test set.
Of course the same can be done in the GUI if you prefer (only a bit more tedious!)