如何在 Java/Weka 中对 k 最近邻使用不同的距离度量?
我在 weka 上使用 k 最近邻分类器(http://weka.sourceforge.net/doc.dev/weka/classifiers/lazy/IBk.html)。
我认为欧几里德距离是默认的距离函数。我如何更改该函数并使用与我自己的距离函数相同的类?
谢谢,
马可
I am using the k-nearest neighbor classifier on weka (http://weka.sourceforge.net/doc.dev/weka/classifiers/lazy/IBk.html).
I suppose the Euclidean distance is the default distance function. How could I change that function and use the same class with my own distance function?
Thanks,
Marco
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
IBk.getNearestNeighbourSearchAlgorithm().setDistanceFunction()
似乎就是您所需要的。查看 http://weka.sourceforge.net/doc.dev/weka /core/DistanceFunction.html
IBk.getNearestNeighbourSearchAlgorithm().setDistanceFunction()
seems to be what you need.Check out http://weka.sourceforge.net/doc.dev/weka/core/DistanceFunction.html
首先,
在lazy下选择ibk。
点击ibk。
在ibk详情页面,点击最近邻搜索算法部分中的算法,在屏幕上编辑距离函数部分。
Firstly,
select ibk under lazy.
Click on ibk.
On the ibk detail page, click on the algorithm in the nearest neighbor search algorithm section, edit the distance function section on the screen.