|
|
|||||||||||||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||||||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectde.lmu.ifi.dbs.elki.logging.AbstractLoggable
de.lmu.ifi.dbs.elki.algorithm.AbstractAlgorithm<V,OutlierResult>
de.lmu.ifi.dbs.elki.algorithm.outlier.SOD<V,D>
V
- the type of NumberVector handled by this AlgorithmD
- the type of Distance used by this Algorithm@Title(value="SOD: Subspace outlier degree") @Description(value="Outlier Detection in Axis-Parallel Subspaces of High Dimensional Data") @Reference(authors="H.-P. Kriegel, P. Kr\u00f6ger, E. Schubert, A. Zimek", title="Outlier Detection in Axis-Parallel Subspaces of High Dimensional Data", booktitle="Proceedings of the 13th Pacific-Asia Conference on Knowledge Discovery and Data Mining (PAKDD), Bangkok, Thailand, 2009", url="http://dx.doi.org/10.1007/978-3-642-01307-2") public class SOD<V extends NumberVector<V,?>,D extends Distance<D>>
Nested Class Summary | |
---|---|
static class |
SOD.SODModel<O extends NumberVector<O,?>>
|
protected static class |
SOD.SODProxyScoreResult
Proxy class that converts a model result to an actual SOD score result. |
Field Summary | |
---|---|
private double |
alpha
Holds the value of ALPHA_PARAM . |
static OptionID |
ALPHA_ID
OptionID for ALPHA_PARAM |
DoubleParameter |
ALPHA_PARAM
Parameter to indicate the multiplier for the discriminance value for discerning small from large variances. |
private int |
knn
Holds the value of KNN_PARAM . |
static OptionID |
KNN_ID
OptionID for KNN_PARAM |
private IntParameter |
KNN_PARAM
Parameter to specify the number of shared nearest neighbors to be considered for learning the subspace properties., must be an integer greater than 0. |
private SharedNearestNeighborSimilarityFunction<V,D> |
similarityFunction
The similarity function. |
static AssociationID<SOD.SODModel<?>> |
SOD_MODEL
The association id to associate a subspace outlier degree. |
static AssociationID<Double> |
SOD_SCORE
The association id for the raw scores. |
Fields inherited from class de.lmu.ifi.dbs.elki.logging.AbstractLoggable |
---|
debug, logger |
Constructor Summary | |
---|---|
SOD(Parameterization config)
Constructor, adhering to Parameterizable |
Method Summary | |
---|---|
private KNNList<DoubleDistance> |
getKNN(Database<V> database,
Integer queryObject)
Provides the k nearest neighbors in terms of the shared nearest neighbor distance. |
protected OutlierResult |
runInTime(Database<V> database)
Performs the SOD algorithm on the given database. |
Methods inherited from class de.lmu.ifi.dbs.elki.algorithm.AbstractAlgorithm |
---|
isTime, isVerbose, run, setTime, setVerbose |
Methods inherited from class de.lmu.ifi.dbs.elki.logging.AbstractLoggable |
---|
debugFine, debugFiner, debugFinest, exception, progress, verbose, warning |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public static final AssociationID<SOD.SODModel<?>> SOD_MODEL
public static final AssociationID<Double> SOD_SCORE
public static final OptionID KNN_ID
KNN_PARAM
private final IntParameter KNN_PARAM
Default value: 1
Key: -sod.knn
private int knn
KNN_PARAM
.
public static final OptionID ALPHA_ID
ALPHA_PARAM
public final DoubleParameter ALPHA_PARAM
Default value: 1.1
Key: -sod.alpha
private double alpha
ALPHA_PARAM
.
private SharedNearestNeighborSimilarityFunction<V extends NumberVector<V,?>,D extends Distance<D>> similarityFunction
Constructor Detail |
---|
public SOD(Parameterization config)
Parameterizable
config
- ParameterizationMethod Detail |
---|
protected OutlierResult runInTime(Database<V> database) throws IllegalStateException
runInTime
in class AbstractAlgorithm<V extends NumberVector<V,?>,OutlierResult>
database
- the database to run the algorithm on
IllegalStateException
- if the algorithm has not been initialized
properly (e.g. the setParameters(String[]) method has been failed
to be called).private KNNList<DoubleDistance> getKNN(Database<V> database, Integer queryObject)
database
- the database holding the objectsqueryObject
- the query object for which the kNNs should be determined
|
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |