Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Task]: Enabling Unsupervised Workflow: Propose a new thresholding approach #1027

Closed
samet-akcay opened this issue Apr 24, 2023 · 2 comments · May be fixed by #1052, #1051 or #1056
Closed

[Task]: Enabling Unsupervised Workflow: Propose a new thresholding approach #1027

samet-akcay opened this issue Apr 24, 2023 · 2 comments · May be fixed by #1052, #1051 or #1056

Comments

@samet-akcay
Copy link
Contributor

samet-akcay commented Apr 24, 2023

What is the motivation for this task?

Background

Anomaly Detection

Anomaly detection is the process of identifying data points, events, or observations within a dataset that significantly deviate from the normal or expected behavior. Anomalies may be caused by a variety of factors, including failures, fraud, or unusual behavior.

Anomaly detection is an essential task in numerous industries, including cybersecurity, finance, healthcare, and manufacturing. It can be used to detect fraud in financial transactions, to identify anomalies in medical data for early disease diagnosis, to detect flaws in manufacturing processes, and to monitor traffic for security threats.

Anomalib

Anomalib is a deep learning library that aims to collect the best anomaly detection algorithms for testing on both public and private datasets. Anomalib offers several ready-to-use implementations of anomaly detection algorithms described in recent research, as well as a set of tools that make it easier to build and use custom models. The library has a strong focus on image-based anomaly detection, where the goal of the algorithm is to identify anomalous images or anomalous pixel regions within images in a dataset.

The thresholding problem

Anomaly detection models in Anomalib are trained only on normal images. During inference, the models are tasked with distinguishing anomalous samples from normal samples. The task is similar to a classical binary classification problem, but instead of generating a class label and a confidence score, Anomalib models generate an anomaly score, which quantifies the distance of the sample to the distribution of normal samples seen during training. The range of possible anomaly score values is unbounded and may differ widely between models and/or datasets, which makes it challenging to set a good threshold for mapping the raw anomaly scores to a binary class label (normal vs. anomalous).

Describe the solution you'd like

Desired solution

Anomalib currently has an adaptive thresholding mechanism in place which aims to address the thresholding problem. The adaptive thresholding mechanism computes the F1 score over a validation set for a range of thresholds. The final threshold value is the threshold value that results in the highest F1 score. A major drawback of this approach is that the validation set is required to contain anomalous samples, which might not always be available in real world anomaly detection problems.

The goal of this hackathon is to design a fully unsupervised thresholding mechanism that does not rely on anomalous samples.

Possible approaches

  • One possibility is to generate fake anomalous images for the validation set, and then use Anomalib's existing adaptive thresholding mechanism. A simple version of this solution, which makes use of random Perlin noise masks, is already implemented in Anomalib. Different noise methods or generative models could possibly improve the results of this method.
  • Use the characteristics of the anomaly score distribution of the normal training images to set a confidence interval.
  • Other, better, solutions may exist. Be creative!

Additional context

No response

@samet-akcay samet-akcay changed the title [Task]: Enabling Unsupervised Workflow: Enhancing Anomalib's Thresholding Mechanism [Task]: Enabling Unsupervised Workflow: Propose a new thresholding approach Apr 24, 2023
@WenjingKangIntel
Copy link
Contributor

anomalib_Team3 working on this

@samet-akcay
Copy link
Contributor Author

Duplicate of #986

@samet-akcay samet-akcay marked this as a duplicate of #986 Aug 11, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
2 participants