mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 12:18:04 +03:00
20 lines
537 B
Python
20 lines
537 B
Python
from ..char_classes import LIST_PUNCT, LIST_ELLIPSES, LIST_QUOTES, CURRENCY
|
|
from ..char_classes import UNITS, ALPHA_UPPER
|
|
|
|
_list_punct = LIST_PUNCT + "፡ ። ፣ ፤ ፥ ፦ ፧".strip().split()
|
|
|
|
_suffixes = (
|
|
_list_punct
|
|
+ LIST_ELLIPSES
|
|
+ LIST_QUOTES
|
|
+ [
|
|
r"(?<=[0-9])\+",
|
|
# Tigrinya is written from Left-To-Right
|
|
r"(?<=[0-9])(?:{c})".format(c=CURRENCY),
|
|
r"(?<=[0-9])(?:{u})".format(u=UNITS),
|
|
r"(?<=[{au}][{au}])\.".format(au=ALPHA_UPPER),
|
|
]
|
|
)
|
|
|
|
TOKENIZER_SUFFIXES = _suffixes
|