Unsupervised Anomaly Detection Module Development Tutorial¶
I. Overview¶
Unsupervised anomaly detection is a technology that automatically identifies and detects anomalies or rare samples that are significantly different from the majority of data in a dataset, without labels or with a small amount of labeled data. This technology is widely used in many fields such as industrial manufacturing quality control and medical diagnosis.
II. Supported Model List¶
Model | Model Download Link | ROCAUC(Avg) | Model Size (M) | Description |
---|---|---|---|---|
STFPM | Inference Model/Trained Model | 0.962 | 22.5 | An unsupervised anomaly detection algorithm based on representation consists of a pre-trained teacher network and a student network with the same structure. The student network detects anomalies by matching its own features with the corresponding features in the teacher network. |
The above model accuracy indicators are measured from the MVTec_AD dataset.
III. Quick Integration ¶
Before quick integration, you need to install the PaddleX wheel package. For the installation method of the wheel package, please refer to the PaddleX Local Installation Tutorial. After installing the wheel package, a few lines of code can complete the inference of the unsupervised anomaly detection module. You can switch models under this module freely, and you can also integrate the model inference of the unsupervised anomaly detection module into your project. Before running the following code, please download the demo image to your local machine.
from paddlex import create_model
model_name = "STFPM"
model = create_model(model_name)
output = model.predict("uad_grid.png", batch_size=1)
for res in output:
res.print(json_format=False)
res.save_to_img("./output/")
res.save_to_json("./output/res.json")
For more information on the usage of PaddleX's single-model inference API, please refer to the PaddleX Single Model Python Script Usage Instructions.
IV. Custom Development¶
If you seek higher accuracy from existing models, you can leverage PaddleX's custom development capabilities to develop better unsupervised anomaly detection models. Before using PaddleX to develop unsupervised anomaly detection models, ensure you have installed the PaddleDetection plugin for PaddleX. The installation process can be found in the PaddleX Local Installation Tutorial.
4.1 Data Preparation¶
Before model training, you need to prepare the corresponding dataset for the task module. PaddleX provides a data validation function for each module, and only data that passes the validation can be used for model training. Additionally, PaddleX provides demo datasets for each module, which you can use to complete subsequent development based on the official demos. If you wish to use private datasets for subsequent model training, refer to the PaddleX Semantic Segmentation Task Module Data Annotation Tutorial.
4.1.1 Demo Data Download¶
You can use the following commands to download the demo dataset to a specified folder:
cd /path/to/paddlex
wget https://paddle-model-ecology.bj.bcebos.com/paddlex/data/mvtec_examples.tar -P ./dataset
tar -xf ./dataset/mvtec_examples.tar -C ./dataset/
4.1.2 Data Validation¶
A single command can complete data validation:
python main.py -c paddlex/configs/anomaly_detection/STFPM.yaml \
-o Global.mode=check_dataset \
-o Global.dataset_dir=./dataset/mvtec_examples
After executing the above command, PaddleX will validate the dataset and collect its basic information. Upon successful execution, the log will print the message Check dataset passed !
. The validation result file will be saved in ./output/check_dataset_result.json
, and related outputs will be saved in the ./output/check_dataset
directory of the current directory. The output directory includes visualized example images and histograms of sample distributions.
👉 Validation Result Details (Click to Expand)
The specific content of the validation result file is:
{
"done_flag": true,
"check_pass": true,
"attributes": {
"train_sample_paths": [
"check_dataset/demo_img/000.png",
"check_dataset/demo_img/001.png",
"check_dataset/demo_img/002.png"
],
"train_samples": 264,
"val_sample_paths": [
"check_dataset/demo_img/000.png",
"check_dataset/demo_img/001.png",
"check_dataset/demo_img/002.png"
],
"val_samples": 57,
"num_classes": 231
},
"analysis": {
"histogram": "check_dataset/histogram.png"
},
"dataset_path": "./dataset/example_data/mvtec_examples",
"show_type": "image",
"dataset_type": "SegDataset"
}
The verification results mentioned above indicate that check_pass
being True
means the dataset format meets the requirements. Details of other indicators are as follows:
attributes.train_samples
: The number of training samples in this dataset is 264;attributes.val_samples
: The number of validation samples in this dataset is 57;attributes.train_sample_paths
: The list of relative paths to the visualization images of training samples in this dataset;attributes.val_sample_paths
: The list of relative paths to the visualization images of validation samples in this dataset;
4.2 Model Training¶
A single command is sufficient to complete model training, taking the training of STFPM as an example:
python main.py -c paddlex/configs/anomaly_detection/STFPM.yaml \
-o Global.mode=train \
-o Global.dataset_dir=./dataset/mvtec_examples
- Specify the path to the
.yaml
configuration file of the model (here it isSTFPM.yaml
,When training other models, you need to specify the corresponding configuration files. The relationship between the model and configuration files can be found in the PaddleX Model List (CPU/GPU)) - Specify the mode as model training:
-o Global.mode=train
- Specify the path to the training dataset:
-o Global.dataset_dir
Other related parameters can be set by modifying the Global
and Train
fields in the .yaml
configuration file, or adjusted by appending parameters in the command line. For example, to specify training on the first two GPUs: -o Global.device=gpu:0,1
; to set the number of training epochs to 10: -o Train.epochs_iters=10
. For more modifiable parameters and their detailed explanations, refer to the PaddleX Common Configuration Parameters for Model Tasks.
👉 More Details (Click to Expand)
- During model training, PaddleX automatically saves model weight files, defaulting to
output
. To specify a save path, use the-o Global.output
field in the configuration file. - PaddleX shields you from the concepts of dynamic graph weights and static graph weights. During model training, both dynamic and static graph weights are produced, and static graph weights are selected by default for model inference.
-
After completing the model training, all outputs are saved in the specified output directory (default is
./output/
), typically including: -
train_result.json
: Training result record file, recording whether the training task was completed normally, as well as the output weight metrics, related file paths, etc.; train.log
: Training log file, recording changes in model metrics and loss during training;config.yaml
: Training configuration file, recording the hyperparameter configuration for this training session;.pdparams
,.pdema
,.pdopt.pdstate
,.pdiparams
,.pdmodel
: Model weight-related files, including network parameters, optimizer, EMA, static graph network parameters, static graph network structure, etc.;
4.3 Model Evaluation¶
After completing model training, you can evaluate the specified model weight file on the validation set to verify the model's accuracy. Using PaddleX for model evaluation, you can complete the evaluation with a single command:
python main.py -c paddlex/configs/anomaly_detection/STFPM.yaml \
-o Global.mode=evaluate \
-o Global.dataset_dir=./dataset/mvtec_examples
- Specify the path to the
.yaml
configuration file for the model(here it'sSTFPM.yaml
) - Set the mode to model evaluation:
-o Global.mode=evaluate
- Specify the path to the validation dataset:
-o Global.dataset_dir
Other related parameters can be configured by modifying the fields underGlobal
andEvaluate
in the.yaml
configuration file. For detailed information, please refer to PaddleX Common Configuration Parameters for Models。
👉 More Details (Click to Expand)
When evaluating the model, you need to specify the model weights file path. Each configuration file has a default weight save path built-in. If you need to change it, simply set it by appending a command line parameter, such as -o Evaluate.weight_path=./output/best_model/best_model/model.pdparams
.
After completing the model evaluation, an evaluate_result.json
file will be generated, which records the evaluation results, specifically whether the evaluation task was completed successfully, and the model's evaluation metrics, including AP.
4.4 Model Inference¶
After completing model training and evaluation, you can use the trained model weights for inference prediction. In PaddleX, model inference prediction can be achieved through two methods: command line and wheel package.
4.4.1 Model Inference¶
-
To perform inference prediction through the command line, simply use the following command. Before running the following code, please download the demo image to your local machine.
Similar to model training and evaluation, the following steps are required: -
Specify the
.yaml
configuration file path of the model (here it isSTFPM.yaml
) - Set the mode to model inference prediction:
-o Global.mode=predict
- Specify the model weight path:
-o Predict.model_dir="./output/best_model/inference"
- Specify the input data path:
-o Predict.input="..."
Other related parameters can be set by modifying the fields underGlobal
andPredict
in the.yaml
configuration file. For details, please refer to PaddleX Common Model Configuration File Parameter Description.
4.4.2 Model Integration¶
The model can be directly integrated into the PaddleX pipeline or into your own project.
- Pipeline Integration
The unsupervised anomaly detection module can be integrated into PaddleX pipelines such as Image_anomaly_detection. Simply replace the model path to update the unsupervised anomaly detection module of the relevant pipeline. In pipeline integration, you can use high-performance inference and service-oriented deployment to deploy your model.
- Module Integration
The weights you produce can be directly integrated into the unsupervised anomaly detection module. You can refer to the Python example code in Quick Integration, simply replace the model with the path to your trained model.