Weka 分类器元投票
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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()));