Visible to Intel only — GUID: GUID-0BB36342-D297-4BF2-BC95-23D8B3C726BE
Visible to Intel only — GUID: GUID-0BB36342-D297-4BF2-BC95-23D8B3C726BE
Multivariate BACON Outlier Detection
In multivariate outlier detection methods, the observation point is the entire feature vector.
Details
Given a set X of n feature vectors of dimension p, the problem is to identify the vectors that do not belong to the underlying distribution using the BACON method (see [Billor2000]).
In the iterative method, each iteration involves several steps:
Identify an initial basic subset of feature vectors that can be assumed as not containing outliers. The constant m is set to . The library supports two approaches to selecting the initial subset:
Based on distances from the medians , where:
med is the vector of coordinate-wise medians
is the vector norm
Based on the Mahalanobis distance , where:
mean and S are the mean and the covariance matrix, respectively, of n feature vectors
Each method chooses m feature vectors with the smallest values of distances.
Compute the discrepancies using the Mahalanobis distance above, where mean and S are the mean and the covariance matrix, respectively, computed for the feature vectors contained in the basic subset.
Set the new basic subset to all feature vectors with the discrepancy less than , where:
is the percentile of the Chi-square distribution with p degrees of freedom
, where:
r is the size of the current basic subset
, where and is the integer part of a number
Iterate steps 2 and 3 until the size of the basic subset no longer changes.
Nominate the feature vectors that are not part of the final basic subset as outliers.
Batch Processing
Algorithm Input
The multivariate BACON outlier detection algorithm accepts the input described below. Pass the Input ID as a parameter to the methods that provide input for your algorithm. For more details, see Algorithms.
Input ID |
Input |
---|---|
data |
Pointer to the numeric table with the data for outlier detection.
NOTE:
The input can be an object of any class derived from the NumericTable class.
|
Algorithm Parameters
The multivariate BACON outlier detection algorithm has the following parameters:
Parameter |
Default Value |
Description |
---|---|---|
algorithmFPType |
float |
The floating-point type that the algorithm uses for intermediate computations. Can be float or double. |
initializationMethod |
baconMedian |
The initialization method, can be:
|
alpha |
0.05 |
One-tailed probability that defines the quantile of the distribution with p degrees of freedom. Recommended value: , where n is the number of observations. |
toleranceToConverge |
0.005 |
The stopping criterion. The algorithm is terminated if the size of the basic subset is changed by less than the threshold. |
Algorithm Output
The multivariate BACON outlier detection algorithm calculates the result described below. Pass the Result ID as a parameter to the methods that access the results of your algorithm. For more details, see Algorithms.
Result ID |
Result |
---|---|
weights |
Pointer to the numeric table of zeros and ones. Zero in the i-th position indicates that the i-th feature vector is an outlier.
NOTE:
By default, the result is an object of the HomogenNumericTable class, but you can define the result as an object of any class derived from NumericTable except the PackedSymmetricMatrix, PackedTriangularMatrix, and CSRNumericTable.
|
Examples
C++ (CPU)
Batch Processing:
Python*
Batch Processing: