See: Description

| Interface | Description | 
|---|---|
| Model | Base interface for Model classes. | 
| Class | Description | 
|---|---|
| BaseModel | Abstract base class for Cluster Models. | 
| Bicluster<V extends FeatureVector<?>> | Wrapper class to provide the basic properties of a bicluster. | 
| BiclusterWithInverted<V extends FeatureVector<?>> | This code was factored out of the Bicluster class, since not all biclusters
 have inverted rows. | 
| ClusterModel | Generic cluster model. | 
| CorrelationAnalysisSolution<V extends NumberVector<?>> | A solution of correlation analysis is a matrix of equations describing the
 dependencies. | 
| CorrelationModel<V extends FeatureVector<?>> | Cluster model using a filtered PCA result and an centroid. | 
| DendrogramModel<D extends Distance<D>> | Model for dendrograms, provides the distance to the child cluster. | 
| DimensionModel | Cluster model just providing a cluster dimensionality. | 
| EMModel<V extends FeatureVector<?>> | Cluster model of an EM cluster, providing a mean and a full covariance
 Matrix. | 
| KMeansModel<V extends NumberVector<?>> | Trivial subclass of the  MeanModelthat indicates the clustering to be
 produced by k-means (so the Voronoi cell visualization is sensible). | 
| LinearEquationModel | Cluster model containing a linear equation system for the cluster. | 
| MeanModel<V extends FeatureVector<?>> | Cluster model that stores a mean for the cluster. | 
| MedoidModel | Cluster model that stores a mean for the cluster. | 
| OPTICSModel | Model for an OPTICS cluster | 
| SubspaceModel<V extends FeatureVector<?>> | Model for Subspace Clusters. | 
Cluster models classes for various algorithms.