Uses of Interface
elki.data.synthetic.bymodel.GeneratorInterface
-
Packages that use GeneratorInterface Package Description elki.data.model Cluster models classes for various algorithms.elki.data.synthetic.bymodel Generator using a distribution model specified in an XML configuration file. -
-
Uses of GeneratorInterface in elki.data.model
Fields in elki.data.model declared as GeneratorInterface Modifier and Type Field Description private GeneratorInterface
GeneratorModel. generator
Cluster generator.Methods in elki.data.model that return GeneratorInterface Modifier and Type Method Description GeneratorInterface
GeneratorModel. getGenerator()
Get the cluster generator.Constructors in elki.data.model with parameters of type GeneratorInterface Constructor Description GeneratorModel(GeneratorInterface generator, double[] mean)
Constructor with mean. -
Uses of GeneratorInterface in elki.data.synthetic.bymodel
Subinterfaces of GeneratorInterface in elki.data.synthetic.bymodel Modifier and Type Interface Description interface
GeneratorInterfaceDynamic
Interface for a dynamic cluster generator.Classes in elki.data.synthetic.bymodel that implement GeneratorInterface Modifier and Type Class Description class
GeneratorSingleCluster
Class to generate a single cluster according to a model as well as getting the density of a given model at that point (to evaluate generated points according to the same model)class
GeneratorStatic
Class for static clusters, that is an implementation of GeneratorInterface that will return only a given set of points.Fields in elki.data.synthetic.bymodel declared as GeneratorInterface Modifier and Type Field Description private GeneratorInterface
GeneratorMain.AssignLabelsByDensity. curclus
Current cluster generator.Fields in elki.data.synthetic.bymodel with type parameters of type GeneratorInterface Modifier and Type Field Description protected java.util.ArrayList<GeneratorInterface>
GeneratorMain. generators
List of clusters to generate.Methods in elki.data.synthetic.bymodel that return types with arguments of type GeneratorInterface Modifier and Type Method Description java.util.List<GeneratorInterface>
GeneratorMain. getGenerators()
Access the generators.Methods in elki.data.synthetic.bymodel with parameters of type GeneratorInterface Modifier and Type Method Description void
GeneratorMain. addCluster(GeneratorInterface c)
Add a cluster to the cluster list.void
GeneratorMain.AssignLabelsByDensity. newCluster(int i, GeneratorInterface curclus)
void
GeneratorMain.AssignPoint. newCluster(int i, GeneratorInterface curclus)
Set the current cluster.Method parameters in elki.data.synthetic.bymodel with type arguments of type GeneratorInterface Modifier and Type Method Description private double[][]
GeneratorMain.AssignLabelsByDistance. clusterCenters(java.util.ArrayList<GeneratorInterface> generators, ClassLabel[] labels)
Compute the cluster centers for each cluster.private void
GeneratorMain. initLabelsAndModels(java.util.ArrayList<GeneratorInterface> generators, ClassLabel[] labels, Model[] models, java.util.regex.Pattern reassign)
Initialize cluster labels and models.
-