Uses of Class
elki.application.AbstractApplication
-
Packages that use AbstractApplication Package Description elki.application Base classes for standalone applications.elki.application.benchmark Benchmarking pseudo algorithms.elki.application.cache Utility applications for the persistence layer such as distance cache builders.elki.application.experiments Packaged experiments to make them easy to reproduce.elki.application.greedyensemble Greedy ensembles for outlier detection.elki.application.statistics Applications to compute some basic data set statistics.elki.gui.minigui A very simple UI to build ELKI command lines.elki.gui.multistep Multi-step GUI for ELKI. -
-
Uses of AbstractApplication in elki.application
Subclasses of AbstractApplication in elki.application Modifier and Type Class Description class
AbstractDistanceBasedApplication<O>
Abstract base class for distance-based tasks and experiments.class
ClassifierHoldoutEvaluationTask<O>
Evaluate a classifier.class
ConvertToBundleApplication
Convert an input file to the more efficient ELKI bundle format.class
GeneratorXMLSpec
Generate a data set based on a specified model (using an XML specification)class
KDDCLIApplication
Basic command line application for Knowledge Discovery in Databases use cases.Fields in elki.application with type parameters of type AbstractApplication Modifier and Type Field Description static java.lang.Class<? extends AbstractApplication>
ELKILauncher. DEFAULT_APPLICATION
Application to run by default.Methods in elki.application that return AbstractApplication Modifier and Type Method Description abstract AbstractApplication
AbstractApplication.Par. make()
-
Uses of AbstractApplication in elki.application.benchmark
Subclasses of AbstractApplication in elki.application.benchmark Modifier and Type Class Description class
KNNBenchmark<O>
Benchmarking experiment that computes the k nearest neighbors for each query point.class
PrioritySearchBenchmark<O>
Benchmarking experiment that computes the k nearest neighbors for each query point.class
RangeQueryBenchmark<O extends NumberVector>
Benchmarking algorithm that computes a range query for each point.class
ValidateApproximativeKNNIndex<O>
Algorithm to validate the quality of an approximative kNN index, by performing a number of queries and comparing them to the results obtained by exact indexing (e.g., linear scanning). -
Uses of AbstractApplication in elki.application.cache
Subclasses of AbstractApplication in elki.application.cache Modifier and Type Class Description class
CacheDoubleDistanceInOnDiskMatrix<O>
Precompute an on-disk distance matrix, using double precision.class
CacheDoubleDistanceKNNLists<O>
Precompute the k nearest neighbors in a disk cache.class
CacheDoubleDistanceRangeQueries<O>
Precompute the k nearest neighbors in a disk cache.class
CacheFloatDistanceInOnDiskMatrix<O>
Precompute an on-disk distance matrix, using float precision.class
PrecomputeDistancesAsciiApplication<O>
Application to precompute pairwise distances into an ascii file. -
Uses of AbstractApplication in elki.application.experiments
Subclasses of AbstractApplication in elki.application.experiments Modifier and Type Class Description class
EvaluateIntrinsicDimensionalityEstimators
Class for testing the estimation quality of intrinsic dimensionality estimators.class
ORLibBenchmark
Load an ORlib problem to evaluate k-medoids clustering quality.class
VisualizeGeodesicDistances
Visualization function for Cross-track, Along-track, and minimum distance function. -
Uses of AbstractApplication in elki.application.greedyensemble
Subclasses of AbstractApplication in elki.application.greedyensemble Modifier and Type Class Description class
ComputeKNNOutlierScores<O extends NumberVector>
Application that runs a series of kNN-based algorithms on a data set, for building an ensemble in a second step.class
EvaluatePrecomputedOutlierScores
Class to load an outlier detection summary file, as produced byComputeKNNOutlierScores
, and compute popular evaluation metrics.class
GreedyEnsembleExperiment
Class to load an outlier detection summary file, as produced byComputeKNNOutlierScores
, and compute a naive ensemble for it.class
VisualizePairwiseGainMatrix
Class to load an outlier detection summary file, as produced byComputeKNNOutlierScores
, and compute a matrix with the pairwise gains. -
Uses of AbstractApplication in elki.application.statistics
Subclasses of AbstractApplication in elki.application.statistics Modifier and Type Class Description class
EstimateIntrinsicDimensionality<O>
Estimate global average intrinsic dimensionality of a data set.class
RangeQuerySelectivity<V extends NumberVector>
Evaluate the range query selectivity. -
Uses of AbstractApplication in elki.gui.minigui
Subclasses of AbstractApplication in elki.gui.minigui Modifier and Type Class Description class
MiniGUI
Minimal GUI built around a table-based parameter editor.Fields in elki.gui.minigui with type parameters of type AbstractApplication Modifier and Type Field Description private java.lang.Class<? extends AbstractApplication>
MiniGUI. maincls
Application to configure / run. -
Uses of AbstractApplication in elki.gui.multistep
Subclasses of AbstractApplication in elki.gui.multistep Modifier and Type Class Description class
MultiStepGUI
Experimenter-style multi step GUI.
-