Spaces:
sonalkum
/
Running on Zero

GAMA-IT / hf /transformers /utils /test_module /custom_tokenization_fast.py
sonalkum's picture
bug fix
fa57c60
raw
history blame
193 Bytes
from transformers import BertTokenizerFast
from .custom_tokenization import CustomTokenizer
class CustomTokenizerFast(BertTokenizerFast):
slow_tokenizer_class = CustomTokenizer
pass