Package | Description |
---|---|
de.lmu.ifi.dbs.elki.algorithm |
Algorithms suitable as a task for the
KDDTask
main routine. |
de.lmu.ifi.dbs.elki.algorithm.benchmark |
Benchmarking pseudo algorithms.
|
de.lmu.ifi.dbs.elki.algorithm.classification |
Classification algorithms.
|
de.lmu.ifi.dbs.elki.algorithm.clustering |
Clustering algorithms
Clustering algorithms are supposed to implement the
Algorithm -Interface. |
de.lmu.ifi.dbs.elki.algorithm.clustering.affinitypropagation |
Affinity Propagation (AP) clustering.
|
de.lmu.ifi.dbs.elki.algorithm.clustering.biclustering |
Biclustering algorithms
|
de.lmu.ifi.dbs.elki.algorithm.clustering.correlation |
Correlation clustering algorithms
|
de.lmu.ifi.dbs.elki.algorithm.clustering.em |
Expectation-Maximization clustering algorithm.
|
de.lmu.ifi.dbs.elki.algorithm.clustering.gdbscan |
Generalized DBSCAN
Generalized DBSCAN is an abstraction of the original DBSCAN idea,
that allows the use of arbitrary "neighborhood" and "core point" predicates.
|
de.lmu.ifi.dbs.elki.algorithm.clustering.gdbscan.parallel |
Parallel versions of Generalized DBSCAN.
|
de.lmu.ifi.dbs.elki.algorithm.clustering.hierarchical |
Hierarchical agglomerative clustering (HAC).
|
de.lmu.ifi.dbs.elki.algorithm.clustering.hierarchical.birch |
BIRCH clustering.
|
de.lmu.ifi.dbs.elki.algorithm.clustering.hierarchical.extraction |
Extraction of partitional clusterings from hierarchical results.
|
de.lmu.ifi.dbs.elki.algorithm.clustering.kmeans |
K-means clustering and variations
|
de.lmu.ifi.dbs.elki.algorithm.clustering.kmeans.parallel |
Parallelized implementations of k-means.
|
de.lmu.ifi.dbs.elki.algorithm.clustering.meta |
Meta clustering algorithms, that get their result from other clusterings or external sources.
|
de.lmu.ifi.dbs.elki.algorithm.clustering.onedimensional |
Clustering algorithms for one-dimensional data.
|
de.lmu.ifi.dbs.elki.algorithm.clustering.optics |
OPTICS family of clustering algorithms.
|
de.lmu.ifi.dbs.elki.algorithm.clustering.subspace |
Axis-parallel subspace clustering algorithms
The clustering algorithms in this package are instances of both, projected
clustering algorithms or subspace clustering algorithms according to the
classical but somewhat obsolete classification schema of clustering
algorithms for axis-parallel subspaces.
|
de.lmu.ifi.dbs.elki.algorithm.clustering.trivial |
Trivial clustering algorithms: all in one, no clusters, label clusterings
These methods are mostly useful for providing a reference result in
evaluation.
|
de.lmu.ifi.dbs.elki.algorithm.clustering.uncertain |
Clustering algorithms for uncertain data.
|
de.lmu.ifi.dbs.elki.algorithm.itemsetmining |
Algorithms for frequent itemset mining such as APRIORI.
|
de.lmu.ifi.dbs.elki.algorithm.itemsetmining.associationrules |
Association rule mining.
|
de.lmu.ifi.dbs.elki.algorithm.outlier |
Outlier detection algorithms
|
de.lmu.ifi.dbs.elki.algorithm.outlier.anglebased |
Angle-based outlier detection algorithms.
|
de.lmu.ifi.dbs.elki.algorithm.outlier.clustering |
Clustering based outlier detection.
|
de.lmu.ifi.dbs.elki.algorithm.outlier.distance |
Distance-based outlier detection algorithms, such as DBOutlier and kNN.
|
de.lmu.ifi.dbs.elki.algorithm.outlier.distance.parallel |
Parallel implementations of distance-based outlier detectors.
|
de.lmu.ifi.dbs.elki.algorithm.outlier.intrinsic |
Outlier detection algorithms based on intrinsic dimensionality.
|
de.lmu.ifi.dbs.elki.algorithm.outlier.lof |
LOF family of outlier detection algorithms
|
de.lmu.ifi.dbs.elki.algorithm.outlier.lof.parallel |
Parallelized variants of LOF.
|
de.lmu.ifi.dbs.elki.algorithm.outlier.meta |
Meta outlier detection algorithms: external scores, score rescaling
|
de.lmu.ifi.dbs.elki.algorithm.outlier.spatial |
Spatial outlier detection algorithms
|
de.lmu.ifi.dbs.elki.algorithm.outlier.subspace |
Subspace outlier detection methods
Methods that detect outliers in subspaces (projections) of the data set.
|
de.lmu.ifi.dbs.elki.algorithm.outlier.svm |
Support-Vector-Machines for outlier detection.
|
de.lmu.ifi.dbs.elki.algorithm.outlier.trivial |
Trivial outlier detection algorithms: no outliers, all outliers, label
outliers.
|
de.lmu.ifi.dbs.elki.algorithm.projection |
Data projections (see also preprocessing filters for basic projections).
|
de.lmu.ifi.dbs.elki.algorithm.statistics |
Statistical analysis algorithms.
|
de.lmu.ifi.dbs.elki.algorithm.timeseries |
Algorithms for change point detection in time series.
|
de.lmu.ifi.dbs.elki.evaluation.clustering.extractor |
Classes to extract clusterings from hierarchical clustering.
|
de.lmu.ifi.dbs.elki.workflow |
Work flow packages, e.g., following the usual KDD model.
|
tutorial.clustering |
Classes from the tutorial on implementing a custom k-means variation
|
tutorial.outlier |
Tutorials on implementing outlier detection methods in ELKI.
|
Class and Description |
---|
AbstractAlgorithm
This class serves also as a model of implementing an algorithm within this
framework.
|
AbstractDistanceBasedAlgorithm
Abstract base class for distance-based algorithms.
|
AbstractDistanceBasedAlgorithm.Parameterizer
Parameterization helper class.
|
AbstractNumberVectorDistanceBasedAlgorithm
Abstract base class for distance-based algorithms that need to work with
synthetic numerical vectors such as mean vectors.
|
AbstractNumberVectorDistanceBasedAlgorithm.Parameterizer
Parameterization helper class.
|
Algorithm
Specifies the requirements for any algorithm that is to be executable by the
main class.
|
DependencyDerivator
Dependency derivator computes quantitatively linear dependencies among
attributes of a given dataset based on a linear correlation PCA.
|
DistanceBasedAlgorithm
Very broad interface for distance based algorithms.
|
KNNDistancesSampler
Provides an order of the kNN-distances for all objects within the database.
|
KNNDistancesSampler.KNNDistanceOrderResult
Curve result for a list containing the knn distances.
|
KNNJoin
Joins in a given spatial database to each object its k-nearest neighbors.
|
KNNJoin.Task
Task in the processing queue.
|
Class and Description |
---|
AbstractAlgorithm
This class serves also as a model of implementing an algorithm within this
framework.
|
AbstractDistanceBasedAlgorithm
Abstract base class for distance-based algorithms.
|
AbstractDistanceBasedAlgorithm.Parameterizer
Parameterization helper class.
|
Algorithm
Specifies the requirements for any algorithm that is to be executable by the
main class.
|
DistanceBasedAlgorithm
Very broad interface for distance based algorithms.
|
Class and Description |
---|
AbstractAlgorithm
This class serves also as a model of implementing an algorithm within this
framework.
|
Algorithm
Specifies the requirements for any algorithm that is to be executable by the
main class.
|
DistanceBasedAlgorithm
Very broad interface for distance based algorithms.
|
Class and Description |
---|
AbstractAlgorithm
This class serves also as a model of implementing an algorithm within this
framework.
|
AbstractDistanceBasedAlgorithm
Abstract base class for distance-based algorithms.
|
AbstractDistanceBasedAlgorithm.Parameterizer
Parameterization helper class.
|
Algorithm
Specifies the requirements for any algorithm that is to be executable by the
main class.
|
DistanceBasedAlgorithm
Very broad interface for distance based algorithms.
|
Class and Description |
---|
AbstractAlgorithm
This class serves also as a model of implementing an algorithm within this
framework.
|
Algorithm
Specifies the requirements for any algorithm that is to be executable by the
main class.
|
Class and Description |
---|
AbstractAlgorithm
This class serves also as a model of implementing an algorithm within this
framework.
|
Algorithm
Specifies the requirements for any algorithm that is to be executable by the
main class.
|
Class and Description |
---|
AbstractAlgorithm
This class serves also as a model of implementing an algorithm within this
framework.
|
Algorithm
Specifies the requirements for any algorithm that is to be executable by the
main class.
|
Class and Description |
---|
AbstractAlgorithm
This class serves also as a model of implementing an algorithm within this
framework.
|
Algorithm
Specifies the requirements for any algorithm that is to be executable by the
main class.
|
Class and Description |
---|
AbstractAlgorithm
This class serves also as a model of implementing an algorithm within this
framework.
|
AbstractDistanceBasedAlgorithm
Abstract base class for distance-based algorithms.
|
AbstractDistanceBasedAlgorithm.Parameterizer
Parameterization helper class.
|
Algorithm
Specifies the requirements for any algorithm that is to be executable by the
main class.
|
DistanceBasedAlgorithm
Very broad interface for distance based algorithms.
|
Class and Description |
---|
AbstractAlgorithm
This class serves also as a model of implementing an algorithm within this
framework.
|
Algorithm
Specifies the requirements for any algorithm that is to be executable by the
main class.
|
Class and Description |
---|
AbstractAlgorithm
This class serves also as a model of implementing an algorithm within this
framework.
|
AbstractDistanceBasedAlgorithm
Abstract base class for distance-based algorithms.
|
AbstractDistanceBasedAlgorithm.Parameterizer
Parameterization helper class.
|
Algorithm
Specifies the requirements for any algorithm that is to be executable by the
main class.
|
DistanceBasedAlgorithm
Very broad interface for distance based algorithms.
|
Class and Description |
---|
AbstractAlgorithm
This class serves also as a model of implementing an algorithm within this
framework.
|
Algorithm
Specifies the requirements for any algorithm that is to be executable by the
main class.
|
Class and Description |
---|
Algorithm
Specifies the requirements for any algorithm that is to be executable by the
main class.
|
Class and Description |
---|
AbstractAlgorithm
This class serves also as a model of implementing an algorithm within this
framework.
|
AbstractDistanceBasedAlgorithm
Abstract base class for distance-based algorithms.
|
AbstractDistanceBasedAlgorithm.Parameterizer
Parameterization helper class.
|
AbstractNumberVectorDistanceBasedAlgorithm
Abstract base class for distance-based algorithms that need to work with
synthetic numerical vectors such as mean vectors.
|
AbstractNumberVectorDistanceBasedAlgorithm.Parameterizer
Parameterization helper class.
|
Algorithm
Specifies the requirements for any algorithm that is to be executable by the
main class.
|
DistanceBasedAlgorithm
Very broad interface for distance based algorithms.
|
Class and Description |
---|
AbstractAlgorithm
This class serves also as a model of implementing an algorithm within this
framework.
|
AbstractNumberVectorDistanceBasedAlgorithm
Abstract base class for distance-based algorithms that need to work with
synthetic numerical vectors such as mean vectors.
|
AbstractNumberVectorDistanceBasedAlgorithm.Parameterizer
Parameterization helper class.
|
Algorithm
Specifies the requirements for any algorithm that is to be executable by the
main class.
|
DistanceBasedAlgorithm
Very broad interface for distance based algorithms.
|
Class and Description |
---|
AbstractAlgorithm
This class serves also as a model of implementing an algorithm within this
framework.
|
Algorithm
Specifies the requirements for any algorithm that is to be executable by the
main class.
|
Class and Description |
---|
AbstractAlgorithm
This class serves also as a model of implementing an algorithm within this
framework.
|
Algorithm
Specifies the requirements for any algorithm that is to be executable by the
main class.
|
Class and Description |
---|
AbstractAlgorithm
This class serves also as a model of implementing an algorithm within this
framework.
|
AbstractDistanceBasedAlgorithm
Abstract base class for distance-based algorithms.
|
AbstractDistanceBasedAlgorithm.Parameterizer
Parameterization helper class.
|
Algorithm
Specifies the requirements for any algorithm that is to be executable by the
main class.
|
DistanceBasedAlgorithm
Very broad interface for distance based algorithms.
|
Class and Description |
---|
AbstractAlgorithm
This class serves also as a model of implementing an algorithm within this
framework.
|
Algorithm
Specifies the requirements for any algorithm that is to be executable by the
main class.
|
Class and Description |
---|
AbstractAlgorithm
This class serves also as a model of implementing an algorithm within this
framework.
|
Algorithm
Specifies the requirements for any algorithm that is to be executable by the
main class.
|
Class and Description |
---|
AbstractAlgorithm
This class serves also as a model of implementing an algorithm within this
framework.
|
Algorithm
Specifies the requirements for any algorithm that is to be executable by the
main class.
|
Class and Description |
---|
AbstractAlgorithm
This class serves also as a model of implementing an algorithm within this
framework.
|
Algorithm
Specifies the requirements for any algorithm that is to be executable by the
main class.
|
Class and Description |
---|
AbstractAlgorithm
This class serves also as a model of implementing an algorithm within this
framework.
|
Algorithm
Specifies the requirements for any algorithm that is to be executable by the
main class.
|
Class and Description |
---|
AbstractAlgorithm
This class serves also as a model of implementing an algorithm within this
framework.
|
AbstractDistanceBasedAlgorithm
Abstract base class for distance-based algorithms.
|
AbstractDistanceBasedAlgorithm.Parameterizer
Parameterization helper class.
|
Algorithm
Specifies the requirements for any algorithm that is to be executable by the
main class.
|
DependencyDerivator
Dependency derivator computes quantitatively linear dependencies among
attributes of a given dataset based on a linear correlation PCA.
|
DistanceBasedAlgorithm
Very broad interface for distance based algorithms.
|
Class and Description |
---|
AbstractAlgorithm
This class serves also as a model of implementing an algorithm within this
framework.
|
Algorithm
Specifies the requirements for any algorithm that is to be executable by the
main class.
|
Class and Description |
---|
AbstractAlgorithm
This class serves also as a model of implementing an algorithm within this
framework.
|
AbstractDistanceBasedAlgorithm
Abstract base class for distance-based algorithms.
|
AbstractDistanceBasedAlgorithm.Parameterizer
Parameterization helper class.
|
Algorithm
Specifies the requirements for any algorithm that is to be executable by the
main class.
|
DistanceBasedAlgorithm
Very broad interface for distance based algorithms.
|
Class and Description |
---|
AbstractAlgorithm
This class serves also as a model of implementing an algorithm within this
framework.
|
AbstractDistanceBasedAlgorithm
Abstract base class for distance-based algorithms.
|
AbstractDistanceBasedAlgorithm.Parameterizer
Parameterization helper class.
|
AbstractNumberVectorDistanceBasedAlgorithm
Abstract base class for distance-based algorithms that need to work with
synthetic numerical vectors such as mean vectors.
|
AbstractNumberVectorDistanceBasedAlgorithm.Parameterizer
Parameterization helper class.
|
Algorithm
Specifies the requirements for any algorithm that is to be executable by the
main class.
|
DistanceBasedAlgorithm
Very broad interface for distance based algorithms.
|
Class and Description |
---|
AbstractAlgorithm
This class serves also as a model of implementing an algorithm within this
framework.
|
AbstractDistanceBasedAlgorithm
Abstract base class for distance-based algorithms.
|
AbstractDistanceBasedAlgorithm.Parameterizer
Parameterization helper class.
|
Algorithm
Specifies the requirements for any algorithm that is to be executable by the
main class.
|
DistanceBasedAlgorithm
Very broad interface for distance based algorithms.
|
Class and Description |
---|
AbstractAlgorithm
This class serves also as a model of implementing an algorithm within this
framework.
|
AbstractDistanceBasedAlgorithm
Abstract base class for distance-based algorithms.
|
AbstractDistanceBasedAlgorithm.Parameterizer
Parameterization helper class.
|
Algorithm
Specifies the requirements for any algorithm that is to be executable by the
main class.
|
DistanceBasedAlgorithm
Very broad interface for distance based algorithms.
|
Class and Description |
---|
AbstractAlgorithm
This class serves also as a model of implementing an algorithm within this
framework.
|
AbstractDistanceBasedAlgorithm
Abstract base class for distance-based algorithms.
|
AbstractDistanceBasedAlgorithm.Parameterizer
Parameterization helper class.
|
Algorithm
Specifies the requirements for any algorithm that is to be executable by the
main class.
|
DistanceBasedAlgorithm
Very broad interface for distance based algorithms.
|
Class and Description |
---|
AbstractAlgorithm
This class serves also as a model of implementing an algorithm within this
framework.
|
AbstractDistanceBasedAlgorithm
Abstract base class for distance-based algorithms.
|
AbstractDistanceBasedAlgorithm.Parameterizer
Parameterization helper class.
|
Algorithm
Specifies the requirements for any algorithm that is to be executable by the
main class.
|
DistanceBasedAlgorithm
Very broad interface for distance based algorithms.
|
Class and Description |
---|
AbstractAlgorithm
This class serves also as a model of implementing an algorithm within this
framework.
|
Algorithm
Specifies the requirements for any algorithm that is to be executable by the
main class.
|
Class and Description |
---|
AbstractAlgorithm
This class serves also as a model of implementing an algorithm within this
framework.
|
AbstractDistanceBasedAlgorithm
Abstract base class for distance-based algorithms.
|
AbstractDistanceBasedAlgorithm.Parameterizer
Parameterization helper class.
|
Algorithm
Specifies the requirements for any algorithm that is to be executable by the
main class.
|
DistanceBasedAlgorithm
Very broad interface for distance based algorithms.
|
Class and Description |
---|
AbstractAlgorithm
This class serves also as a model of implementing an algorithm within this
framework.
|
Algorithm
Specifies the requirements for any algorithm that is to be executable by the
main class.
|
Class and Description |
---|
AbstractAlgorithm
This class serves also as a model of implementing an algorithm within this
framework.
|
Algorithm
Specifies the requirements for any algorithm that is to be executable by the
main class.
|
Class and Description |
---|
AbstractAlgorithm
This class serves also as a model of implementing an algorithm within this
framework.
|
Algorithm
Specifies the requirements for any algorithm that is to be executable by the
main class.
|
Class and Description |
---|
AbstractAlgorithm
This class serves also as a model of implementing an algorithm within this
framework.
|
AbstractDistanceBasedAlgorithm.Parameterizer
Parameterization helper class.
|
Algorithm
Specifies the requirements for any algorithm that is to be executable by the
main class.
|
Class and Description |
---|
AbstractAlgorithm
This class serves also as a model of implementing an algorithm within this
framework.
|
AbstractDistanceBasedAlgorithm
Abstract base class for distance-based algorithms.
|
AbstractDistanceBasedAlgorithm.Parameterizer
Parameterization helper class.
|
AbstractNumberVectorDistanceBasedAlgorithm
Abstract base class for distance-based algorithms that need to work with
synthetic numerical vectors such as mean vectors.
|
AbstractNumberVectorDistanceBasedAlgorithm.Parameterizer
Parameterization helper class.
|
Algorithm
Specifies the requirements for any algorithm that is to be executable by the
main class.
|
DistanceBasedAlgorithm
Very broad interface for distance based algorithms.
|
Class and Description |
---|
AbstractAlgorithm
This class serves also as a model of implementing an algorithm within this
framework.
|
Algorithm
Specifies the requirements for any algorithm that is to be executable by the
main class.
|
Class and Description |
---|
Algorithm
Specifies the requirements for any algorithm that is to be executable by the
main class.
|
Class and Description |
---|
Algorithm
Specifies the requirements for any algorithm that is to be executable by the
main class.
|
Class and Description |
---|
AbstractAlgorithm
This class serves also as a model of implementing an algorithm within this
framework.
|
AbstractDistanceBasedAlgorithm
Abstract base class for distance-based algorithms.
|
AbstractDistanceBasedAlgorithm.Parameterizer
Parameterization helper class.
|
AbstractNumberVectorDistanceBasedAlgorithm
Abstract base class for distance-based algorithms that need to work with
synthetic numerical vectors such as mean vectors.
|
Algorithm
Specifies the requirements for any algorithm that is to be executable by the
main class.
|
DistanceBasedAlgorithm
Very broad interface for distance based algorithms.
|
Class and Description |
---|
AbstractAlgorithm
This class serves also as a model of implementing an algorithm within this
framework.
|
AbstractDistanceBasedAlgorithm
Abstract base class for distance-based algorithms.
|
AbstractDistanceBasedAlgorithm.Parameterizer
Parameterization helper class.
|
Algorithm
Specifies the requirements for any algorithm that is to be executable by the
main class.
|
DistanceBasedAlgorithm
Very broad interface for distance based algorithms.
|
Copyright © 2019 ELKI Development Team. License information.