mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-13 13:17:06 +03:00
46dfe773e1
* replace unicode categories with raw list of code points * simplifying ranges * fixing variable length quotes * removing redundant regular expression * small cleanup of regexp notations * quotes and alpha as ranges instead of alterations * removed most regexp dependencies and features * exponential backtracking - unit tests * rewrote expression with pathological backtracking * disabling double hyphen tests for now * test additional variants of repeating punctuation * remove regex and redundant backslashes from load_reddit script * small typo fixes * disable double punctuation test for russian * clean up old comments * format block code * final cleanup * naming consistency * french strings as unicode for python 2 support * french regular expression case insensitive
37 lines
1.0 KiB
Python
37 lines
1.0 KiB
Python
# coding: utf8
|
||
from __future__ import unicode_literals
|
||
|
||
from ..punctuation import TOKENIZER_INFIXES
|
||
from ..char_classes import LIST_PUNCT, LIST_ELLIPSES, LIST_QUOTES, CURRENCY
|
||
from ..char_classes import CONCAT_QUOTES, UNITS, ALPHA, ALPHA_LOWER, ALPHA_UPPER
|
||
|
||
|
||
ELISION = " ' ’ ".strip().replace(" ", "").replace("\n", "")
|
||
HYPHENS = r"- – — ‐ ‑".strip().replace(" ", "").replace("\n", "")
|
||
|
||
|
||
_suffixes = (
|
||
LIST_PUNCT
|
||
+ LIST_ELLIPSES
|
||
+ LIST_QUOTES
|
||
+ [
|
||
r"(?<=[0-9])\+",
|
||
r"(?<=°[FfCcKk])\.", # °C. -> ["°C", "."]
|
||
r"(?<=[0-9])°[FfCcKk]", # 4°C -> ["4", "°C"]
|
||
r"(?<=[0-9])%", # 4% -> ["4", "%"]
|
||
r"(?<=[0-9])(?:{c})".format(c=CURRENCY),
|
||
r"(?<=[0-9])(?:{u})".format(u=UNITS),
|
||
r"(?<=[0-9{al}{e}(?:{q})])\.".format(al=ALPHA_LOWER, e=r"%²\-\+", q=CONCAT_QUOTES),
|
||
r"(?<=[{au}][{au}])\.".format(au=ALPHA_UPPER),
|
||
]
|
||
)
|
||
|
||
|
||
_infixes = TOKENIZER_INFIXES + [
|
||
r"(?<=[{a}][{el}])(?=[{a}])".format(a=ALPHA, el=ELISION)
|
||
]
|
||
|
||
|
||
TOKENIZER_SUFFIXES = _suffixes
|
||
TOKENIZER_INFIXES = _infixes
|