mirror of
https://github.com/Steffo99/unimore-bda-6.git
synced 2024-11-22 16:04:18 +00:00
9 lines
175 B
Python
9 lines
175 B
Python
"""
|
|
This module contains all implemented tokenizers.
|
|
"""
|
|
|
|
from .base import *
|
|
from .nltk_word_tokenize import *
|
|
from .potts import *
|
|
from .plain import *
|
|
from .lower import *
|