Skip to content

Instantly share code, notes, and snippets.

@rvaghefi
Created January 13, 2021 20:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rvaghefi/69c6518f4b7221e399cfb5dee690f0f3 to your computer and use it in GitHub Desktop.
Save rvaghefi/69c6518f4b7221e399cfb5dee690f0f3 to your computer and use it in GitHub Desktop.
scipy_cdist.py
from scipy.spatial.distance import cdist
def scipy_cdist(X,Y):
return cdist(X,Y,metric='euclidean')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment