Skip to content

combinationpredictionhandler

combinationpredictionhandler

Module of the MultiPredictionHandler

Classes

CombinationPredictionHandler

CombinationPredictionHandler(handlers)

Bases: PredictionHandler

Prediction Handler that combines a list of PredictionHandlers

Source code in niceml/mlcomponents/predictionhandlers/combinationpredictionhandler.py
def __init__(self, handlers: List[PredictionHandler]):
    super().__init__()
    self.handler_list: List[PredictionHandler] = handlers