Weka:如何在 java 中获取测试实例的预测值?
我已经成功训练了一个分类器(bayesnet)并构建了一个测试集(ARFF 格式),该测试集有一个实例,有一个缺失值。
Evaluation eTest = new Evaluation(trainingInstance);
eTest.evaluateModel(bayes_Classifier, testInstance);
如何访问缺失值的预测?我已经使用 GUI 测试了两种 ARFF 结构(训练和测试)。他们工作。我根本不知道如何访问预测值......
I have successfully trained a classifier (bayesnet) and constructed a test set (ARFF-format), which has one instance, with one missing value.
Evaluation eTest = new Evaluation(trainingInstance);
eTest.evaluateModel(bayes_Classifier, testInstance);
How can I access the prediction for the missing value? I have tested both ARFF structures (training & Test) with the GUI. They work. I simply do not know, how to access the prediction value...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您想要使用
eTest.evaluateModelOnce()
,它将返回一个双精度值,即单个testInstance
的预测。evaluateModel()
方法适用于多个实例。You want to use
eTest.evaluateModelOnce()
which would return a double value, the prediction for a singletestInstance
. TheevaluateModel()
method is intended for multiple instances.