import abc class Preprocessor(abc.ABC): @staticmethod @abc.abstractmethod def preprocess(batch): pass def __call__(self, batch): return self.preprocess(batch)