File size: 538 Bytes
fc0f7bd | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | # Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
"""This module contains methods which operate on a predictor, rather than an estimator.
The predictor's output is adjusted to fulfill specified parity constraints. The postprocessors
learn how to adjust the predictor's output from the training data.
"""
from ._postprocessing import PostProcessing # noqa: F401
from ._threshold_optimizer import ThresholdOptimizer # noqa: F401
__all__ = [
"PostProcessing",
"ThresholdOptimizer"
]
|