ELKI

Source: Wikipedia, the free encyclopedia.
Environment for DeveLoping KDD-Applications Supported by Index-Structures
Developer(s)Technical University of Dortmund; initially Ludwig Maximilian University of Munich
Stable release
0.8.0 / 5 October 2022; 18 months ago (2022-10-05)
Repository
Written in
Java platform
TypeData mining
LicenseAGPL (since version 0.4.0)
Websiteelki-project.github.io

ELKI (Environment for Developing KDD-Applications Supported by Index-Structures) is a

database index structures
.

Description

The ELKI framework is written in

distance functions, indexes, and evaluation measures. The Java just-in-time compiler optimizes all combinations to a similar extent, making benchmarking results more comparable if they share large parts of the code. When developing new algorithms or index structures, the existing components can be easily reused, and the type safety
of Java detects many programming errors at compile time.

ELKI has been used in

bike sharing redistribution,[5] and traffic prediction.[6]

Objectives

The university project is developed for use in teaching and research. The source code is written with extensibility and reusability in mind, but is also optimized for performance. The experimental evaluation of algorithms depends on many environmental factors and implementation details can have a large impact on the runtime.[7] ELKI aims at providing a shared codebase with comparable implementations of many algorithms.

As research project, it currently does not offer integration with

software engineers
.

Architecture

ELKI is modeled around a

k-nearest-neighbor algorithm, local outlier factor and DBSCAN
) can be implemented easily and benefit from the index acceleration. The database core also provides fast and memory efficient collections for object collections and associative structures such as nearest neighbor lists.

ELKI makes extensive use of Java interfaces, so that it can be extended easily in many places. For example, custom data types, distance functions, index structures, algorithms, input parsers, and output modules can be added and combined without modifying the existing code. This includes the possibility of defining a custom distance function and using existing indexes for acceleration.

ELKI uses a

jar files
.

ELKI uses optimized collections for performance rather than the standard Java API.[8] For loops for example are written similar to C++ iterators:

  for (DBIDIter iter = ids.iter(); iter.valid(); iter.advance()) {
    relation.get(iter);     // E.g., get the referenced object
    idcollection.add(iter); // E.g., add the reference to a DBID collection
  }

In contrast to typical Java iterators (which can only iterate over objects), this conserves memory, because the iterator can internally use primitive values for data storage. The reduced garbage collection improves the runtime. Optimized collections libraries such as GNU Trove3, Koloboke, and fastutil employ similar optimizations. ELKI includes data structures such as object collections and heaps (for, e.g., nearest neighbor search) using such optimizations.

Visualization

The visualization module uses

PDF for easy inclusion in scientific publications in LaTeX
. Exported files can be edited with SVG editors such as
cascading style sheets
are used, the graphics design can be restyled easily. Unfortunately, Batik is rather slow and memory intensive, so the visualizations are not very scalable to large data sets (for larger data sets, only a subsample of the data is visualized by default).

Awards

Version 0.4, presented at the "Symposium on Spatial and Temporal Databases" 2011, which included various methods for spatial outlier detection,[9] won the conference's "best demonstration paper award".

Included algorithms

Select included algorithms:[10]

Version history

Version 0.1 (July 2008) contained several Algorithms from

subspace clustering and correlation clustering algorithms.[11]

Version 0.2 (July 2009) added functionality for

time series analysis, in particular distance functions for time series.[12]

Version 0.3 (March 2010) extended the choice of anomaly detection algorithms and visualization modules.[13]

Version 0.4 (September 2011) added algorithms for geo data mining and support for multi-relational database and index structures.[9]

Version 0.5 (April 2012) focuses on the evaluation of cluster analysis results, adding new visualizations and some new algorithms.[14]

Version 0.6 (June 2013) introduces a new 3D adaption of parallel coordinates for data visualization, apart from the usual additions of algorithms and index structures.[15]

Version 0.7 (August 2015) adds support for uncertain data types, and algorithms for the analysis of uncertain data.[16]

Version 0.7.5 (February 2019) adds additional clustering algorithms, anomaly detection algorithms, evaluation measures, and indexing structures.[17]

Version 0.8 (October 2020) adds automatic index creation, garbage collection, and incremental priority search, as well as many more algorithms such as BIRCH.[18]

Similar applications

  • scikit-learn: machine learning library in python
  • classification
    algorithms
  • RapidMiner: An application available commercially (a restricted version is available as open source)
  • KNIME: An open source platform which integrates various components for machine learning and data mining

See also

References

  1. ^ Hans-Peter Kriegel, Peer Kröger, Arthur Zimek (2009). "Outlier Detection Techniques (Tutorial)" (PDF). 13th Pacific-Asia Conference on Knowledge Discovery and Data Mining (PAKDD 2009). Bangkok, Thailand. Retrieved 2010-03-26.{{cite journal}}: CS1 maint: multiple names: authors list (link)
  2. PMID 26909165
    .
  3. .
  4. .
  5. .
  6. .
  7. .
  8. ^ "DBIDs". ELKI homepage. Retrieved 13 December 2016.
  9. ^
    doi:10.1007/978-3-642-22922-0_41.{{cite conference}}: CS1 maint: multiple names: authors list (link
    )
  10. ^ excerpt from "Data Mining Algorithms in ELKI". Retrieved 17 October 2019.
  11. doi:10.1007/978-3-540-69497-7_41.{{cite conference}}: CS1 maint: multiple names: authors list (link
    )
  12. doi:10.1007/978-3-642-02982-0_35.{{cite conference}}: CS1 maint: multiple names: authors list (link
    )
  13. doi:10.1007/978-3-642-12098-5_34.{{cite conference}}: CS1 maint: multiple names: authors list (link
    )
  14. doi:10.1109/ICDE.2012.128.{{cite conference}}: CS1 maint: multiple names: authors list (link
    )
  15. doi:10.1145/2463676.2463696.{{cite conference}}: CS1 maint: multiple names: authors list (link
    )
  16. .
  17. ].
  18. .

External links

This page is based on the copyrighted Wikipedia article: ELKI. Articles is available under the CC BY-SA 3.0 license; additional terms may apply.Privacy Policy