作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想运行朴素贝叶斯分类器。我在weka中训练了这个模型。现在,对于每个测试实例,我想找到预测的类和概率分布,以便使用该值我也可以对实例进行排名。我正在从java运行weka。我怎样才能得到weka java中的概率分布?
最佳答案
double[] predictionDistribution = null;
try {
double clsLabel = classifier.classifyInstance(Test Instance Here);
predictionDistribution = classifier.distributionForInstance(Test Instance Here);
} catch (Exception e) {
System.out.println("Unable to classify item\n");
}
使用 double[]
数组,然后使用分类器的 distributionForInstance()
方法。
关于java - weka中朴素贝叶斯的概率分布,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33536460/
我是一名优秀的程序员,十分优秀!