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

update `kmeans` docstring, add counts to algos #121

Open 70Gage70 opened 4 months ago

70Gage70 commented 4 months ago

Expanded docstring of kmeans function to give a simple example. This was the first thing I checked when I started to use the package and didn't see one.

I also noticed that the algos don't return counts. I just applied the countmap function from StatsBase which we already depend on.

Killer package by the way, it sped up my calculation by an order of magnitude.

PyDataBlog commented 4 months ago

Expanded docstring of kmeans function to give a simple example. This was the first thing I checked when I started to use the package and didn't see one.

I also noticed that the algos don't return counts. I just applied the countmap function from StatsBase which we already depend on.

Killer package by the way, it sped up my calculation by an order of magnitude.

Thanks for looking into this and glad that you like the package :)

I will review and looking forward to it eventually going in.