PyDataBlog / ParallelKMeans.jl

Parallel & lightning fast implementation of available classic and contemporary variants of the KMeans clustering algorithm
MIT License
50 stars 13 forks source link

Support for distance metrics beyond Euclidian. #56

Closed PyDataBlog closed 4 years ago

PyDataBlog commented 4 years ago

Currently, the package uses the Squared Euclidian distance as the defacto metric. Users should be given the freedom to choose other metrics.

The plan is to provide support for all the available distance metrics provided by Distances.jl .