-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
35 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# coding: utf8 | ||
from __future__ import unicode_literals | ||
|
||
from spacy.lang.char_classes import LIST_ELLIPSES, LIST_ICONS | ||
from spacy.lang.char_classes import CONCAT_QUOTES, ALPHA, ALPHA_LOWER, ALPHA_UPPER | ||
from spacy.lang.punctuation import TOKENIZER_SUFFIXES | ||
|
||
|
||
_quotes = CONCAT_QUOTES.replace("'", "") | ||
|
||
_infixes = ( | ||
LIST_ELLIPSES | ||
+ LIST_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}])([{q}\)\]\(\[])(?=[{a}])".format(a=ALPHA, q=_quotes), | ||
r"(?<=[{a}])--(?=[{a}])".format(a=ALPHA), | ||
r"(?<=[{a}0-9])[:<>=/](?=[{a}])".format(a=ALPHA), | ||
] | ||
) | ||
|
||
_suffixes = [ | ||
suffix | ||
for suffix in TOKENIZER_SUFFIXES | ||
if suffix not in ["'s", "'S", "’s", "’S", r"\'"] | ||
] | ||
|
||
|
||
TOKENIZER_INFIXES = _infixes | ||
TOKENIZER_SUFFIXES = _suffixes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters