Weka 分类器元投票

发布于 2024-12-13 14:24:20 字数 51 浏览 0 评论 0原文

我在 weka 中使用多数投票组合规则。总共有4个分类器。我想知道如果票数平局会发生什么

I am using Majority voting combination rule in weka. There are 4 classifiers in total. I am wondering what will happen if there is a tie in the number of votes

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

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

发布评论

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

评论(1

优雅的叶子 2024-12-20 14:24:20

Weka API:“......用于打破多数投票中平局的随机数生成器......”。
请参阅:http://fiji.sc/javadoc/weka/classifiers/meta/Vote.html

如果您对代码感兴趣,他们就是这样做的:


// 根据均匀随机分布解决平局

int MajorityIndex = MajorityIndexes.get(m_Random
.nextInt(majorityIndexes.size()));

Weka API : ".....the random number generator used for breaking ties in majority voting..".
See :http://fiji.sc/javadoc/weka/classifiers/meta/Vote.html

If you are interested in code , this is how they do it:


// Resolve the ties according to a uniform random distribution

int majorityIndex = majorityIndexes.get(m_Random
.nextInt(majorityIndexes.size()));

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