mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 04:08:09 +03:00
23 lines
689 B
Python
23 lines
689 B
Python
# coding: utf8
|
|
from __future__ import unicode_literals
|
|
|
|
from ..char_classes import LIST_ELLIPSES, CONCAT_ICONS
|
|
from ..char_classes import CONCAT_QUOTES, ALPHA, ALPHA_LOWER, ALPHA_UPPER
|
|
|
|
_quotes = CONCAT_QUOTES.replace("'", "")
|
|
|
|
_infixes = (
|
|
LIST_ELLIPSES
|
|
+ [CONCAT_ICONS]
|
|
+ [
|
|
r"(?<=[{al}])\.(?=[{au}])".format(al=ALPHA_LOWER, au=ALPHA_UPPER),
|
|
r"(?<=[{a}])[,!?](?=[{a}])".format(a=ALPHA),
|
|
r"(?<=[{a}])[:<>=](?=[{a}])".format(a=ALPHA),
|
|
r"(?<=[{a}])--(?=[{a}])".format(a=ALPHA),
|
|
r"(?<=[{a}]),(?=[{a}])".format(a=ALPHA),
|
|
r"(?<=[{a}])([{q}\)\]\(\[])(?=[\-{a}])".format(a=ALPHA, q=CONCAT_QUOTES),
|
|
]
|
|
)
|
|
|
|
TOKENIZER_INFIXES = _infixes
|