Click or drag to resize
Accord.NET (logo)

BinarySplit Properties

The BinarySplit type exposes the following members.

Properties
  NameDescription
Public propertyCentroids
Gets or sets the cluster centroids.
(Inherited from KMeans.)
Public propertyClusters
Gets the clusters found by K-means.
(Inherited from KMeans.)
Public propertyComputeCovariances
Gets or sets whether covariance matrices for the clusters should be computed at the end of an iteration. Default is true.
(Inherited from KMeans.)
Public propertyComputeError
Gets or sets whether the clustering distortion error (the average distance between all data points and the cluster centroids) should be computed at the end of the algorithm. The result will be stored in Error. Default is true.
(Inherited from KMeans.)
Public propertyComputeProportions
Gets or sets whether cluster proportions should be calculated after the learning algorithm has finished computing the clusters. Default is false.
Public propertyDimension
Gets the dimensionality of the data space.
(Inherited from KMeans.)
Public propertyDistance
Gets or sets the distance function used as a distance metric between data points.
(Inherited from KMeans.)
Public propertyError
Gets the cluster distortion error after the last call to this class' Compute methods.
(Inherited from KMeans.)
Public propertyIterations
Gets the number of iterations performed in the last call to this class' Compute methods.
(Inherited from KMeans.)
Public propertyK
Gets the number of clusters.
(Inherited from KMeans.)
Public propertyMaxIterations
Gets or sets the maximum number of iterations to be performed by the method. If set to zero, no iteration limit will be imposed. Default is 0.
(Inherited from KMeans.)
Public propertyParallelOptions
Gets or sets the parallelization options for this algorithm.
(Inherited from ParallelLearningBase.)
Public propertyToken
Gets or sets a cancellation token that can be used to cancel the algorithm while it is running.
(Inherited from ParallelLearningBase.)
Public propertyTolerance
Gets or sets the relative convergence threshold for stopping the algorithm. Default is 1e-5.
(Inherited from KMeans.)
Public propertyUseSeeding
Gets or sets the strategy used to initialize the centroids of the clustering algorithm. Default is KMeansPlusPlus.
(Inherited from KMeans.)
Top
See Also