TriviaAnsweringMachine / custom_tokenizer.py
Backedman's picture
Create custom_tokenizer.py
c8dfeef verified
raw
history blame
161 Bytes
class CustomTokenizer:
def __init__(self):
pass
def __call__(self, text):
# No tokenization, return input text as-is
return text