@Reference(authors="Hans-Peter Kriegel, Peer Kr\u00f6ger, Erich Schubert, Arthur Zimek", title="Interpreting and Unifying Outlier Scores", booktitle="Proc. 11th SIAM International Conference on Data Mining (SDM 2011)", url="https://doi.org/10.1137/1.9781611972818.2", bibkey="DBLP:conf/sdm/KriegelKSZ11") public class OutlierGammaScaling extends java.lang.Object implements OutlierScaling
Reference:
Hans-Peter Kriegel, Peer Kröger, Erich Schubert, Arthur Zimek
Interpreting and Unifying Outlier Scores
Proc. 11th SIAM International Conference on Data Mining (SDM 2011)
Modifier and Type | Class and Description |
---|---|
static class |
OutlierGammaScaling.Parameterizer
Parameterization class.
|
Modifier and Type | Field and Description |
---|---|
(package private) double |
atmean
Score at the mean, for cut-off.
|
(package private) double |
k
Gamma parameter k
|
(package private) OutlierScoreMeta |
meta
Keep a reference to the outlier score meta, for normalization.
|
(package private) boolean |
normalize
Store flag to Normalize data before curve fitting.
|
(package private) double |
theta
Gamma parameter theta
|
Constructor and Description |
---|
OutlierGammaScaling(boolean normalize)
Constructor.
|
Modifier and Type | Method and Description |
---|---|
double |
getMax()
Get maximum resulting value.
|
double |
getMin()
Get minimum resulting value.
|
double |
getScaled(double value)
Transform a given value using the scaling function.
|
<A> void |
prepare(A array,
NumberArrayAdapter<?,A> adapter)
Prepare is called once for each data set, before getScaled() will be
called.
|
void |
prepare(OutlierResult or)
Prepare is called once for each data set, before getScaled() will be
called.
|
protected double |
preScale(double score)
Normalize data if necessary.
|
double k
double theta
double atmean
boolean normalize
OutlierScoreMeta meta
public OutlierGammaScaling(boolean normalize)
normalize
- Normalization flagpublic double getScaled(double value)
ScalingFunction
getScaled
in interface ScalingFunction
value
- Original valuepublic void prepare(OutlierResult or)
OutlierScaling
prepare
in interface OutlierScaling
or
- Outlier result to usepublic <A> void prepare(A array, NumberArrayAdapter<?,A> adapter)
OutlierScaling
OutlierResult
is preferred, as it will
allow access to the metadata.prepare
in interface OutlierScaling
array
- Data to processadapter
- Array adapterprotected double preScale(double score)
Note: this is overridden by MinusLogGammaScaling
!
score
- Original scorepublic double getMin()
ScalingFunction
Double.NaN
or
Double.NEGATIVE_INFINITY
.getMin
in interface ScalingFunction
public double getMax()
ScalingFunction
Double.NaN
or
Double.POSITIVE_INFINITY
.getMax
in interface ScalingFunction
Copyright © 2019 ELKI Development Team. License information.