The SVDD Procedure
Overview: SVDD Procedure
The SVDD procedure implements the support vector data description (SVDD) algorithm (Tax and Duin 2004). SVDD is a one-class classification technique that is useful in applications where data that belong to one class are abundant but data about any other class are scarce or missing. Fraud detection, equipment health monitoring, and process control are some examples of application areas where the majority of the data belong to one class. You can use SVDD to model such one-class data and subsequently use the model to perform outlier detection.
In its simplest form, an SVDD model is obtained by building a minimum-radius hypersphere around the one-class training data. The hypersphere provides a compact spherical description of the training data. This training data description can be used to determine whether a new observation is similar to the training data observations. The distance from any new observation to the hypersphere center is computed and compared with the hypersphere radius. If the distance is more than the radius, the observation is designated as an outlier. Using kernel functions in SVDD formulation provides a more flexible description of training data. Such description is nonspherical and conforms to the geometry of the data.
PROC SVDD implements only the flexible data description.
SVDD is useful for obtaining a geometric description of data and in most applications also for detecting outliers. SVDD is used in domains where the majority of the data belong to one class. Applications of SVDD include the following:
multivariate process control (Sun and Tsung 2003; Sukchotrat, Kim, and Tsung 2009)
equipment prognostics and health management (Benkedjouh et al. 2012; Tax, Ypma, and Duin 1999a, 1999b)
cybersecurity and intrusion detection (Kang, Jeong, and Kong 2012)
fraud identification (Jeong, An, and Nam 2016; Juszczak et al. 2008; Jeong, An, and Nam 2016)
hyperspectral image analysis (Banerjee, Burlina, and Diehl 2006; Banerjee, Burlina, and Meth 2007; Sakla et al. 2011)
analysis of health data from wearable devices (Shin, Lee, and Park 2011; Yang et al. 2010)
Copyright © SAS Institute Inc. All rights reserved.