class Preprocessor(ABC): def __init__(self): pass @abstractmethod def apply(self, dataset: Dataset) -> Dataset: pass
Last updated 1 day ago