gpt4 book ai didi

scikit-learn - sklearn 半径中的 K 最近邻 - 椭圆

转载 作者:行者123 更新时间:2023-12-03 23:22:23 25 4
gpt4 key购买 nike

当我使用 knn sklearn 中的算法,我可以获得指定半径内的最近邻居,即它返回该半径内最近邻居的圆形。是否有一个实现,您可以指定两个半径值来返回最近邻的椭圆形状?

最佳答案

您可以在 NearestNeighbors 中指定自定义距离度量:

# aspect of the axis a, b of the ellipse
aspect = b / a
dist = lambda p0, p1: math.sqrt((p1[0] - p0[0]) * (p1[0] - p0[0]) + (p1[1] - p0[1]) * (p1[1] - p0[1]) * aspect)
nn = NearestNeighbors(radius=1.0, metric=dist)

或直接 use the KDTree custom metric :
from sklearn.neighbors import KDTree
import numpy as np
X = np.array([[-1, -1], [-2, -1], [-3, -2], [1, 1], [2, 1], [3, 2]])

# aspect of the axis a, b of the ellipse
aspect = b / a
dist = DistanceMetric.get_metric('pyfunc', func = lambda p0, p1: math.sqrt((p1[0] - p0[0]) * (p1[0] - p0[0]) + (p1[1] - p0[1]) * (p1[1] - p0[1]) * aspect))
kdt = KDTree(X, leaf_size=30, metric=dist)

# now kdt allows queries with ellipses with aspect := b / a
kdt.query([0.1337, -0.42], k=6)

当然,您可以选择在距离度量中应用任何仿射变换,以获得定向椭圆的旋转和缩放。

关于scikit-learn - sklearn 半径中的 K 最近邻 - 椭圆,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38083664/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com