mirror of
https://github.com/Steffo99/unimore-bda-6.git
synced 2024-11-21 23:44:19 +00:00
Document and fix imports in .tokenizer
This commit is contained in:
parent
1294335da0
commit
48ac00b548
1 changed files with 8 additions and 14 deletions
|
@ -1,15 +1,9 @@
|
||||||
from .base import BaseTokenizer
|
"""
|
||||||
from .nltk_word_tokenize import NLTKWordTokenizer
|
This module contains all implemented tokenizers.
|
||||||
from .potts import PottsTokenizer, PottsTokenizerWithNegation
|
"""
|
||||||
from .plain import PlainTokenizer
|
|
||||||
from .lower import LowercaseTokenizer
|
|
||||||
|
|
||||||
|
from .base import *
|
||||||
__all__ = (
|
from .nltk_word_tokenize import *
|
||||||
"BaseTokenizer",
|
from .potts import *
|
||||||
"NLTKWordTokenizer",
|
from .plain import *
|
||||||
"PottsTokenizer",
|
from .lower import *
|
||||||
"PottsTokenizerWithNegation",
|
|
||||||
"PlainTokenizer",
|
|
||||||
"LowercaseTokenizer",
|
|
||||||
)
|
|
||||||
|
|
Loading…
Reference in a new issue