Displaying 3 results from an estimated 3 matches for "kmeanspp".
Did you mean:
kmeans
2016 Aug 19
2
KMeans - Evaluation Results
...to work on, I wouldn't worry too much about removing PointType, Point & Centroid from the public API. I have a feeling that when we look at further ways of initialising the KMeans centroids we'll want to make that a public API rather than a selector (mode="random", mode="kmeanspp") as it is now. That will involve exposing some part of that set of classes to make that API. (There are a number of ways of initialising them in the literature already, and it would be nice to allow users to experiment with their own.)
J
--
James Aylett
devfort.com ? spacelog.org ? tarta...
2012 Feb 29
3
Does anyone knows a KMeans ++ package for R?
Dear all.
I am searching for KMeans ++ for R. I cannot find it.
Do you know any package with it?
Best regards,
Rui
2016 Aug 18
3
KMeans - Evaluation Results
>
>
>
> Actually, you're doing something slightly unusual there: making the
> internal member public. Protected would be better, and private is I think
> most usual; library clients aren't going to have access to the Internal
> class declaration, so they can't call things on it. This means it's
> actually difficult right now to subclass Feature.
>
> I