Matthias Bisping 91dd467142 applied black
2022-03-30 19:38:15 +02:00

11 lines
203 B
Python

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