KMeans Initialization Method Enumeration
Enumerates the methods that may be used to initialize
the K-means clustering algorithm.
Definition
Namespace: Extreme.Statistics.Multivariate
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
public enum KMeansInitializationMethod
Members
KMeansPlusPlus | 0 | Use the K-means++ algorithm to compute initial centroids. This is the default. |
RandomCenters | 1 | Use randomly selected observations as the centroid. |
Forgy | 1 | Same as RandomCenters. Use randomly selected observations as the centroid. |
RandomAssignments | 2 | Assign each observation randomly to one of the clusters and uses the centroid of each cluster. |