mirror of
https://github.com/saymrwulf/transformers.git
synced 2026-05-14 20:58:08 +00:00
7 lines
172 B
Python
7 lines
172 B
Python
|
|
from transformers import ProcessorMixin
|
||
|
|
|
||
|
|
|
||
|
|
class CustomProcessor(ProcessorMixin):
|
||
|
|
feature_extractor_class = "AutoFeatureExtractor"
|
||
|
|
tokenizer_class = "AutoTokenizer"
|