Uses of Interface
de.aitools.dm.clustering.Clusterer

Packages that use Clusterer
de.aitools.dm.clustering.algorithms   
de.aitools.dm.clusterlabeling.algorithms   
 

Uses of Clusterer in de.aitools.dm.clustering.algorithms
 

Classes in de.aitools.dm.clustering.algorithms that implement Clusterer
 class AClusterer
           
 class AGraphClusterer
           
 class DBScan
           This class is experimental at best.
 class HighRecallClusterer
           
 class KMeans
          This class clusters Vectors using the KMeans algorithm.
 class KNNHAC
          Class for clustering Vectors using the Hierarchical Agglomerative Clustering algorithm (EfficientHAC) described in Introduction to Information Retrieval
.
 class MajorClust
          @INPROCEEDINGS{stein:1999d, ADDRESS = {Berlin Heidelberg New\,York}, AUTHOR = {Benno Stein and Oliver Niggemann}, BOOKTITLE = {{Graph-Theoretic Concepts in Computer Science}}, EDITOR = {Peter Widmayer and Gabriele Neyer and Stefan Eidenbenz}, ISBN = {3-540-66731-8}, MONTH = jun, PAGES = {122-134}, PUBLISHER = {Springer}, SERIES = {Lecture Notes in Computer Science}, SITE = {25th International Workshop on Graph Theoretic Concepts in Computer Science (WG 99), Ascona}{, Switzerland}, TITLE = {{On the Nature of Structure and its Identification}}, VOLUME = {1665 LNCS}, YEAR = {1999} }
 class SLink
          A algorithm for the single link hierarchical clustering method.
 

Uses of Clusterer in de.aitools.dm.clusterlabeling.algorithms
 

Classes in de.aitools.dm.clusterlabeling.algorithms that implement Clusterer
 class AClusterLabeler
           
 class FrequentPredictiveWords
          Frequent and predictive words -- a data-centric Cluster-Labeling algorithm.
 class KeyphraseLabeler
           
 class TopicIdentifier
           
 class WeightedCentroidCovering
          Weighted Centroid Covering --- a data-centric Cluster-Labeling algorithm
 

Constructors in de.aitools.dm.clusterlabeling.algorithms with parameters of type Clusterer
FrequentPredictiveWords(Clusterer clusterer, VectorSpace vocabulary, java.util.List<java.lang.String> data, int numTerms)
           
KeyphraseLabeler(Clusterer clusterer, VectorSpace vocabulary, java.util.List<java.lang.String> data, int numTerms)
           
TopicIdentifier(Clusterer clusterer, VectorSpace vocabulary, java.util.List<java.lang.String> data, int numTerms)
           
WeightedCentroidCovering(Clusterer clusterer, VectorSpace vocabulary, java.util.List<java.lang.String> data, int numTerms)