Clustering#

API#

Clusterers.

This package includes clustering algorithms, a.k.a. clusterers.

Given an input data, a clusterer is used to group data into classes, a.k.a. clusters.

Wherever possible, these algorithms should be able to predict the class of a new data, as well as the probability of belonging to each class.

Use the ClustererFactory to access all the available clusterers or derive either the BaseClusterer or BasePredictiveClusterer class to add a new one.

Algorithms#

See the clustering algorithms.

Examples#

See the examples about clustering.