Source code for anomalib.utils.callbacks.min_max_normalization

"""Anomaly Score Normalization Callback that uses min-max normalization."""

# Copyright (C) 2022 Intel Corporation
# SPDX-License-Identifier: Apache-2.0

from typing import Any, Dict, Optional

import pytorch_lightning as pl
from pytorch_lightning import Callback
from pytorch_lightning.utilities.cli import CALLBACK_REGISTRY
from pytorch_lightning.utilities.types import STEP_OUTPUT

from anomalib.models.components import AnomalyModule
from anomalib.post_processing.normalization.min_max import normalize
from anomalib.utils.metrics import MinMax


@CALLBACK_REGISTRY
[docs]class MinMaxNormalizationCallback(Callback): """Callback that normalizes the image-level and pixel-level anomaly scores using min-max normalization.""" # pylint: disable=unused-argument
[docs] def setup(self, trainer: pl.Trainer, pl_module: AnomalyModule, stage: Optional[str] = None) -> None: """Adds min_max metrics to normalization metrics.""" if not hasattr(pl_module, "normalization_metrics"): pl_module.normalization_metrics = MinMax().cpu() elif not isinstance(pl_module.normalization_metrics, MinMax): raise AttributeError( f"Expected normalization_metrics to be of type MinMax, got {type(pl_module.normalization_metrics)}"
) # pylint: disable=unused-argument
[docs] def on_test_start(self, trainer: pl.Trainer, pl_module: AnomalyModule) -> None: """Called when the test begins.""" for metric in (pl_module.image_metrics, pl_module.pixel_metrics): if metric is not None: metric.set_threshold(0.5)
[docs] def on_validation_batch_end( self, _trainer: pl.Trainer, pl_module: AnomalyModule, outputs: STEP_OUTPUT, _batch: Any, _batch_idx: int, _dataloader_idx: int, ) -> None: """Called when the validation batch ends, update the min and max observed values.""" if "anomaly_maps" in outputs.keys(): pl_module.normalization_metrics(outputs["anomaly_maps"]) else: pl_module.normalization_metrics(outputs["pred_scores"])
[docs] def on_test_batch_end( self, _trainer: pl.Trainer, pl_module: AnomalyModule, outputs: STEP_OUTPUT, _batch: Any, _batch_idx: int, _dataloader_idx: int, ) -> None: """Called when the test batch ends, normalizes the predicted scores and anomaly maps.""" self._normalize_batch(outputs, pl_module)
[docs] def on_predict_batch_end( self, _trainer: pl.Trainer, pl_module: AnomalyModule, outputs: Dict, _batch: Any, _batch_idx: int, _dataloader_idx: int, ) -> None: """Called when the predict batch ends, normalizes the predicted scores and anomaly maps.""" self._normalize_batch(outputs, pl_module)
@staticmethod
[docs] def _normalize_batch(outputs, pl_module): """Normalize a batch of predictions.""" stats = pl_module.normalization_metrics.cpu() outputs["pred_scores"] = normalize( outputs["pred_scores"], pl_module.image_threshold.value.cpu(), stats.min, stats.max ) if "anomaly_maps" in outputs.keys(): outputs["anomaly_maps"] = normalize( outputs["anomaly_maps"], pl_module.pixel_threshold.value.cpu(), stats.min, stats.max
)