anomaly
Anomaly Score Normalization Callback that uses min-max normalization.
ThresholdNormalizationCallback(threshold_type='pixel')
¶
Bases: Callback
Callback that normalizes the image-level and pixel-level anomaly scores dividing by the threshold value.
Parameters:
-
threshold_type
(
str
, default:'pixel'
) –Threshold used to normalize pixel level anomaly scores, either image or pixel (default)
Source code in quadra/utils/anomaly.py
59 60 61 |
|
on_predict_batch_end(trainer, pl_module, outputs, batch, batch_idx, dataloader_idx=0)
¶
Called when the predict batch ends, normalizes the predicted scores and anomaly maps.
Source code in quadra/utils/anomaly.py
85 86 87 88 89 90 91 92 93 94 95 96 97 |
|
on_test_batch_end(trainer, pl_module, outputs, batch, batch_idx, dataloader_idx=0)
¶
Called when the test batch ends, normalizes the predicted scores and anomaly maps.
Source code in quadra/utils/anomaly.py
71 72 73 74 75 76 77 78 79 80 81 82 83 |
|
on_test_start(trainer, pl_module)
¶
Called when the test begins.
Source code in quadra/utils/anomaly.py
63 64 65 66 67 68 69 |
|
normalize_anomaly_score(raw_score, threshold)
¶
Normalize anomaly score value or map based on threshold.
Parameters:
-
raw_score
(
MapOrValue
) –Raw anomaly score valure or map
-
threshold
(
float
) –Threshold for anomaly detection
Returns:
-
MapOrValue
–Normalized anomaly score value or map clipped between 0 and 1000
Source code in quadra/utils/anomaly.py
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 |
|