Uses of Interface
elki.clustering.em.models.EMClusterModelFactory
-
Packages that use EMClusterModelFactory Package Description elki.clustering.em Expectation-Maximization clustering algorithm for Gaussian Mixture Modeling (GMM).elki.clustering.em.models elki.outlier.clustering Clustering based outlier detection. -
-
Uses of EMClusterModelFactory in elki.clustering.em
Fields in elki.clustering.em declared as EMClusterModelFactory Modifier and Type Field Description protected EMClusterModelFactory<? super O,M>
EM. mfactory
Factory for producing the initial cluster model.protected EMClusterModelFactory<O,M>
EM.Par. mfactory
Cluster model factory.Constructors in elki.clustering.em with parameters of type EMClusterModelFactory Constructor Description EM(int k, double delta, EMClusterModelFactory<? super O,M> mfactory)
Constructor.EM(int k, double delta, EMClusterModelFactory<? super O,M> mfactory, int maxiter, boolean soft)
Constructor.EM(int k, double delta, EMClusterModelFactory<? super O,M> mfactory, int maxiter, double prior, boolean soft)
Constructor.EM(int k, double delta, EMClusterModelFactory<? super O,M> mfactory, int miniter, int maxiter, double prior, boolean soft)
Constructor. -
Uses of EMClusterModelFactory in elki.clustering.em.models
Classes in elki.clustering.em.models that implement EMClusterModelFactory Modifier and Type Class Description class
DiagonalGaussianModelFactory
Factory for EM with multivariate gaussian models using diagonal matrixes.class
MultivariateGaussianModelFactory
Factory for EM with multivariate Gaussian models (with covariance; also known as Gaussian Mixture Modeling, GMM).class
SphericalGaussianModelFactory
Factory for EM with multivariate gaussian models using a single variance.class
TextbookMultivariateGaussianModelFactory
Factory for EM with multivariate Gaussian model, using the textbook algorithm.class
TextbookSphericalGaussianModelFactory
Factory for EM with multivariate gaussian models using a single variance.class
TwoPassMultivariateGaussianModelFactory
Factory for EM with multivariate Gaussian models (with covariance; also known as Gaussian Mixture Modeling, GMM). -
Uses of EMClusterModelFactory in elki.outlier.clustering
Fields in elki.outlier.clustering declared as EMClusterModelFactory Modifier and Type Field Description protected EMClusterModelFactory<? super V,?>
EMOutlier. mfactory
Factory for producing the initial cluster model.protected EMClusterModelFactory<V,?>
EMOutlier.Par. mfactory
Cluster model factory.Constructors in elki.outlier.clustering with parameters of type EMClusterModelFactory Constructor Description EMOutlier(int k, double delta, EMClusterModelFactory<? super V,?> mfactory, int miniter, int maxiter, double prior)
Constructor.
-