I'm looking at the KNN package for scikit-learn; is there any way to choose a pairwise distance metric (from the package sklearn.metrics.pairwise) that isn't the p-norm, or Minkowski distance? For example, could I use the RBF kernel? Or even the cosine distance?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
||||
|
|
|
Unfortunately the BallTree algorithm that is used to compute fast exact NN search on low to medium number of dimensions cannot work with arbitrary metrics. |
|||||||||||
|