hc99's picture
Add files using upload-large-folder tool
fc0f7bd verified
raw
history blame
572 Bytes
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
class Reduction:
"""Base class for our reduction-implementing estimators."""
def fit(self, X, y, **kwargs): # noqa: D102
raise NotImplementedError()
def predict(self, X): # noqa: D102
raise NotImplementedError()
def predict_proba(self, X): # noqa: D102
raise NotImplementedError()
# Ensure that Reduction shows up in correct place in documentation
# when it is used as a base class
Reduction.__module__ = "fairlearn.reductions"