@Reference(authors="R. J. G. B. Campello, D. Moulavi, J. Sander", title="Density-Based Clustering Based on Hierarchical Density Estimates", booktitle="Pacific-Asia Conf. Advances in Knowledge Discovery and Data Mining (PAKDD)", url="https://doi.org/10.1007/978-3-642-37456-2_14", bibkey="DBLP:conf/pakdd/CampelloMS13") @Priority(value=205) public class SimplifiedHierarchyExtraction extends java.lang.Object implements ClusteringAlgorithm<Clustering<DendrogramModel>>
In contrast to the authors top-down approach, we use a bottom-up approach based on the more efficient pointer representation introduced in SLINK.
Reference:
 R. J. G. B. Campello, D. Moulavi, J. Sander
 Density-Based Clustering Based on Hierarchical Density Estimates
 Pacific-Asia Conf. Advances in Knowledge Discovery and Data Mining (PAKDD)
 F
| Modifier and Type | Class and Description | 
|---|---|
protected class  | 
SimplifiedHierarchyExtraction.Instance
Instance for a single data set. 
 | 
static class  | 
SimplifiedHierarchyExtraction.Parameterizer
Parameterization class. 
 | 
private static class  | 
SimplifiedHierarchyExtraction.TempCluster
Temporary cluster. 
 | 
| Modifier and Type | Field and Description | 
|---|---|
private HierarchicalClusteringAlgorithm | 
algorithm
Clustering algorithm to run to obtain the hierarchy. 
 | 
private static Logging | 
LOG
Class logger. 
 | 
private int | 
minClSize
Minimum cluster size. 
 | 
| Constructor and Description | 
|---|
SimplifiedHierarchyExtraction(HierarchicalClusteringAlgorithm algorithm,
                             int minClSize)
Constructor. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
TypeInformation[] | 
getInputTypeRestriction()
Get the input type restriction used for negotiating the data query. 
 | 
Clustering<DendrogramModel> | 
run(Database database)
Runs the algorithm. 
 | 
Clustering<DendrogramModel> | 
run(PointerHierarchyRepresentationResult pointerresult)
Process an existing result. 
 | 
private static final Logging LOG
private int minClSize
private HierarchicalClusteringAlgorithm algorithm
public SimplifiedHierarchyExtraction(HierarchicalClusteringAlgorithm algorithm, int minClSize)
algorithm - Algorithm to runminClSize - Minimum cluster sizepublic Clustering<DendrogramModel> run(Database database)
Algorithmrun in interface Algorithmrun in interface ClusteringAlgorithm<Clustering<DendrogramModel>>database - the database to run the algorithm onpublic Clustering<DendrogramModel> run(PointerHierarchyRepresentationResult pointerresult)
pointerresult - Existing result in pointer representation.public TypeInformation[] getInputTypeRestriction()
AlgorithmgetInputTypeRestriction in interface AlgorithmCopyright © 2019 ELKI Development Team. License information.