Created
August 9, 2020 07:55
-
-
Save sergeyprokudin/20fd608e4d16c6c93feff604300d8c06 to your computer and use it in GitHub Desktop.
Compute the matrix of pairwise L2 distances between two arrays
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import numpy as np | |
def pdist(X1, X2): | |
"""Computes the matrix of pairwise distances between X1 and X2. | |
The implementation is based on the following observation for matrices: | |
(X1-X2)^2 = X1^2 - 2*X1*X2 + X2^2 | |
Parameters | |
---------- | |
X1: Array of m points (m x d). | |
X2: Array of n points (n x d). | |
Returns | |
------- | |
Matrix (m x n) of pairwise euclidean (L2) distances. | |
Sanity check | |
------------ | |
from sklearn.metrics import pairwise_distances | |
np.allclose(pairwise_distances(X1, X2, metric='l2'), pdist(X1, X2)) | |
""" | |
sqdist = np.sum(X1**2, 1).reshape(-1, 1) + np.sum(X2**2, 1) - 2 * X1 @ X2.T | |
return np.sqrt(sqdist) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment