gpt4 book ai didi

python - scipy pdist 只得到两个最近的邻居

转载 作者:行者123 更新时间:2023-12-01 06:29:34 25 4
gpt4 key购买 nike

我一直在用 scipy 计算成对距离,并且试图获取到两个最近邻居的距离。我当前的工作解决方案是:

dists = squareform(pdist(xs.todense()))
dists = np.sort(dists, axis=1)[:, 1:3]

但是,方形方法在空间上非常昂贵,并且在我的情况下有些多余。我只需要两个最近的距离,而不是全部。有没有简单的解决方法?

谢谢!

最佳答案

线性索引和上三角距离矩阵的 (i, j) 之间的关系不是直接或容易可逆的(参见 squareform doc 中的注释 2)。

但是,通过循环所有索引,可以获得逆关系:

import numpy as np
import matplotlib.pyplot as plt

from scipy.spatial.distance import pdist

def inverse_condensed_indices(idx, n):
k = 0
for i in range(n):
for j in range(i+1, n):
if k == idx:
return (i, j)
k +=1
else:
return None

# test
points = np.random.rand(8, 2)
distances = pdist(points)
sorted_idx = np.argsort(distances)
n = points.shape[0]
ij = [inverse_condensed_indices(idx, n)
for idx in sorted_idx[:2]]

# graph
plt.figure(figsize=(5, 5))
for i, j in ij:
x = [points[i, 0], points[j, 0]]
y = [points[i, 1], points[j, 1]]
plt.plot(x, y, '-', color='red');

plt.plot(points[:, 0], points[:, 1], '.', color='black');
plt.xlim(0, 1); plt.ylim(0, 1);

它似乎比使用 squareform 快一点:

%timeit squareform(range(28))
# 9.23 µs ± 63 ns per loop (mean ± std. dev. of 7 runs, 100000 loops each)

%timeit inverse_condensed_indices(27, 8)
# 2.38 µs ± 25 ns per loop (mean ± std. dev. of 7 runs, 100000 loops each)

关于python - scipy pdist 只得到两个最近的邻居,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59969435/

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