File size: 279 Bytes
3de7bf6 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
"""Tools for anomaly score normalization."""
# Copyright (C) 2022 Intel Corporation
# SPDX-License-Identifier: Apache-2.0
from enum import Enum
class NormalizationMethod(str, Enum):
"""Normalization method for normalization."""
MIN_MAX = "min_max"
NONE = "none"
|