Multi-Class Hypersphere Anomaly Detection (MCHAD)

Code: Here · Paper: Here

Our Paper Multi-Class Hypersphere Anomaly Detection (MCHAD) has been accepted for presentation at the ICPR 2022. In summary, we propose a new loss function for learning neural networks that are able to detect anomalies in their inputs.

Poster for MCHAD (PDF).

Poster for MCHAD (PDF).

How does it work?

Omitting some details, the loss we propose has three different components, each of which we will explain in the following.

Intra-Class Variance

We want the $f(x)$ of one class to cluster as tightly around a class center $\mu_y$ as possible. For this, we can use the the Intra class variance loss which is defined as:

$$ \mathcal{L}_{\Lambda}(x,y) = \Vert \mu_y - f(x) \Vert^2 $$

Inter-Class Variance

A trivial solution to minimize $ \mathcal{L}_{\Lambda}$ would be to map all inputs to the same point, which would lead to the collapse of the model. To prevent this, we have to add a second term that ensures that the points remain separable:

$$ \mathcal{L}_{\Delta}(x,y) = \log (1 + \sum e^{ \Vert \mu_y - f(x) \Vert^2 - \Vert\mu_j - f(x) \Vert^2} ) $$

This expression might seem rather random, but it can in fact be derived from the method of maximum likelihood.

MCHAD on CIFAR 10

MCHAD on CIFAR 10

Extra-Class Variance

Sometimes, we have a set of example outliers at hand. Previous work showed that the robustness of models can be significantly improved by including these in the optimization. Therefore, we can add a term that incentivize that such outliers are mapped sufficiently far away from the class centers as:

$$ \mathcal{L}_{\Theta}(x) = \max \lbrace 0, r_y^2 - \Vert \mu_y - f(x) \Vert^2 \rbrace $$

where $x$ is some outlier and $r_y$ is some class conditional radius. This term can also be applied to other methods that aim to learn spherical clusters in their output space. We refer to it as Generalized MCHAD.

Generalized MCHAD on CIFAR 10

Generalized MCHAD on CIFAR 10

How well does it work?

In our experiments, we found that both MCHAD and Generalized MCHAD outperform other hypersphere learning methods. In ablations studies, we also investigated the influence of each of the loss terms and demonstrated that all of them contribute to the overall performance in terms of discriminative power on normal data and the ability to detect anomalies.


Last Updated: 13 Jul. 2022
Categories: Anomaly Detection
Tags: ICPR · Anomaly Detection