margin_estimator.py 259 bytes
from extreme_estimator.estimator.abstract_estimator import AbstractEstimator


class PointWiseMarginEstimator(AbstractEstimator):
    pass


class SmoothMarginEstimator(AbstractEstimator):
    # with different type of marginals: cosntant, linear....
    pass