File size: 190 Bytes
a9bd396 | 1 2 3 4 5 6 7 | from transformers import ProcessorMixin
class CustomProcessor(ProcessorMixin):
def __init__(self, feature_extractor, tokenizer):
super().__init__(feature_extractor, tokenizer)
|
a9bd396 | 1 2 3 4 5 6 7 | from transformers import ProcessorMixin
class CustomProcessor(ProcessorMixin):
def __init__(self, feature_extractor, tokenizer):
super().__init__(feature_extractor, tokenizer)
|