V
- Vector type@Title(value="ABOD: Angle-Based Outlier Detection") @Description(value="Outlier detection using variance analysis on angles, especially for high dimensional data sets.") @Reference(authors="Hans-Peter Kriegel, Matthias Schubert, Arthur Zimek", title="Angle-Based Outlier Detection in High-dimensional Data", booktitle="Proc. 14th ACM SIGKDD Int. Conf. Knowledge Discovery and Data Mining (KDD\'08)", url="https://doi.org/10.1145/1401890.1401946", bibkey="DBLP:conf/kdd/KriegelSZ08") @Alias(value={"de.lmu.ifi.dbs.elki.algorithm.outlier.ABOD","abod"}) public class ABOD<V extends NumberVector> extends AbstractAlgorithm<OutlierResult> implements OutlierAlgorithm
Outlier detection using variance analysis on angles, especially for high
dimensional data sets. Exact version, which has cubic runtime (see also
FastABOD
and LBABOD
for faster versions).
Reference:
Hans-Peter Kriegel, Matthias Schubert, Arthur Zimek
Angle-Based Outlier Detection in High-dimensional Data
Proc. 14th ACM SIGKDD Int. Conf. Knowledge Discovery and Data Mining (KDD'08)
Modifier and Type | Class and Description |
---|---|
static class |
ABOD.Parameterizer<V extends NumberVector>
Parameterization class.
|
Modifier and Type | Field and Description |
---|---|
protected SimilarityFunction<? super V> |
kernelFunction
Store the configured Kernel version.
|
private static Logging |
LOG
The logger for this class.
|
ALGORITHM_ID
Constructor and Description |
---|
ABOD(SimilarityFunction<? super V> kernelFunction)
Constructor for Angle-Based Outlier Detection (ABOD).
|
Modifier and Type | Method and Description |
---|---|
protected double |
computeABOF(KernelMatrix kernelMatrix,
DBIDRef pA,
DBIDArrayIter pB,
DBIDArrayIter pC,
MeanVariance s)
Compute the exact ABOF value.
|
TypeInformation[] |
getInputTypeRestriction()
Get the input type restriction used for negotiating the data query.
|
protected Logging |
getLogger()
Get the (STATIC) logger for this class.
|
OutlierResult |
run(Database db,
Relation<V> relation)
Run ABOD on the data set.
|
run
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
run
private static final Logging LOG
protected SimilarityFunction<? super V extends NumberVector> kernelFunction
public ABOD(SimilarityFunction<? super V> kernelFunction)
kernelFunction
- kernel function to usepublic OutlierResult run(Database db, Relation<V> relation)
relation
- Relation to processprotected double computeABOF(KernelMatrix kernelMatrix, DBIDRef pA, DBIDArrayIter pB, DBIDArrayIter pC, MeanVariance s)
kernelMatrix
- Kernel matrixpA
- Object A to compute ABOF forpB
- Iterator over objects BpC
- Iterator over objects Cs
- Statistics trackerpublic TypeInformation[] getInputTypeRestriction()
AbstractAlgorithm
getInputTypeRestriction
in interface Algorithm
getInputTypeRestriction
in class AbstractAlgorithm<OutlierResult>
protected Logging getLogger()
AbstractAlgorithm
getLogger
in class AbstractAlgorithm<OutlierResult>
Copyright © 2019 ELKI Development Team. License information.