Skip to content

LuigiFederico/PatchCore-for-Industrial-Anomaly-Detection

Repository files navigation

PatchCore for Industrial Anomaly Detection

[Paper] [Colab] [Presentation]

Nowadays the ability to recognize defective parts is very important in large-scale industrial manufacturing. The problem becomes more challenging when we try to fit a model using a nominal (non-defective) image only at training time. This problem is called "cold-start". The best approaches combine embeddings from ImageNet models with an outlier detection model. In this repository, we reproduce the state-of-the-art approach called PatchCore which uses a representative memory bank of nominal patch features to achieve high performances both on detection and localization. We developed this approach using the MVTec Anomaly Detection dataset on which PatchCore achieves an image-level anomaly detection AUROC score of up to 98.4%, almost doubling the performance compared to related works. Furthermore, we tested the patchcore by replacing the backbone with an alternative solution, trying to get better generalizable representations to leverage for the downstream task. This alternative solution is represented by CLIP: we exploited the pretrained Image Encoder of CLIP instead of the ImageNet pretrained one. The experiment results suggest that using ResNet50x16 as the architecture of the image encoder we obtain better results on a smaller training set.

Authors

Approach

PatchCore approach

Source

Usage from Colab

You can easly run our code on the provided Colab Jupyther Notebook. We suggest to use a GPU runtime.

First of all, install all the required frameworks and import our repository. Then, you need to choose which backbone you want to use as Pretrained Encoder to run the PatchCore method. If you want to run the vanilla version of PatchCore, use WideResNet50 as backbone. If you want to test the CLIP version, then you can choose between the following architectures:

  • ResNet50
  • ResNet50-4
  • ResNet50-16
  • ResNet101

You can easily verify the available backbones by running the function:

    display_backbones()

It is possible to select which MVTec classes to run the PatchCore. You can list the available classes using the function:

    display_MVTec_classes()

If you want to run the PatchCore algorithm over the entire MVTec dataset, set the variable classes to None.

Finally, you can run the model through the API function

    run_model(classes: list, backbone: str)

It will automatically download the dataset classes and it will perform three phases:

  • Training phase: locally-aware patch feature creation.
  • Coreset subsampling: reduces the number of patches inside the memory back.
  • Testing phase: computes image-level anomaly detection and segmentation.

As a result, the AUROC score calculated using the obtained AD scores and the MVTec test dataset will be displayed. If you run multiple classes then you will observe the AUROC for each class and, at the end, the average AUROC score.

Releases

No releases published

Packages

No packages published

Languages