1
Fork 0
mirror of https://github.com/Steffo99/unimore-bda-6.git synced 2024-11-22 16:04:18 +00:00
bda-6-steffo/unimore_bda_6/tokenizer/plain.py

16 lines
365 B
Python
Raw Normal View History

2023-02-08 18:46:05 +00:00
import tensorflow
from .base import BaseTokenizer
class PlainTokenizer(BaseTokenizer):
"""
Tokenizer which just splits the text into tokens by separating them at whitespaces.
"""
2023-02-10 04:12:07 +00:00
def tokenize_plain(self, text: str) -> str:
return text
2023-02-08 18:46:05 +00:00
def tokenize_tensorflow(self, text: tensorflow.Tensor) -> tensorflow.Tensor:
return text