Novelty Detection is the detection for whether a new data point is an outlier, and outlier detection is the detection for whether a train data is an outlier. In other words, we find the most concentrated area in outlier detection.
For outlier detection, we first fit density. We define the data point as outlier if it has in low density. densityfunction≤t
We also can find the boundary between inlier and outlier. To do this, we have to find the smallest ball such that it includes all data points. This problem is converted into the problem finding a center c and radius r as below.
When αi​ becomes 0, the points will be inside the circle. When αi​ is bigger than 0, the points will be exactly on the boundary. Thus, the solution in α is very sparse.