This commit is contained in:
Vimos Tan 2017-08-30 14:49:14 +08:00
parent dcff10abe9
commit a6d9fb5bb6
2 changed files with 48 additions and 1 deletions

View File

@ -0,0 +1,46 @@
# coding: utf-8
from __future__ import unicode_literals
from ... import load
from ...tokenizer import Tokenizer
from ... import util
import pytest
def test_customized_tokenizer_handles_infixes():
def custom_tokenizer(nlp_model):
prefix_re = util.compile_prefix_regex(nlp_model.Defaults.prefixes)
suffix_re = util.compile_suffix_regex(nlp_model.Defaults.suffixes)
custom_infixes = ['\.\.\.+',
'(?<=[0-9])-(?=[0-9])',
# '(?<=[0-9]+),(?=[0-9]+)',
'[0-9]+(,[0-9]+)+',
u'[\[\]!&:,()\*—–\/-]']
infix_re = util.compile_infix_regex(custom_infixes)
# infix_re = re.compile(ur'[\[\]!&:,()]')
tokenizer = Tokenizer(nlp_model.vocab,
nlp_model.Defaults.tokenizer_exceptions,
prefix_re.search,
suffix_re.search,
infix_re.finditer,
token_match=None)
return lambda text: tokenizer(text)
nlp = load('en', create_make_doc=custom_tokenizer)
sentence = "The 8 and 10-county definitions are not used for the greater Southern California Megaregion."
context = [word.text for word in nlp(sentence)]
assert context == [u'The', u'8', u'and', u'10', u'-', u'county', u'definitions', u'are', u'not', u'used',
u'for',
u'the', u'greater', u'Southern', u'California', u'Megaregion', u'.']
# the trailing '-' may cause Assertion Error
sentence = "The 8- and 10-county definitions are not used for the greater Southern California Megaregion."
context = [word.text for word in nlp(sentence)]
assert context == [u'The', u'8', u'-', u'and', u'10', u'-', u'county', u'definitions', u'are', u'not', u'used',
u'for',
u'the', u'greater', u'Southern', u'California', u'Megaregion', u'.']

View File

@ -312,6 +312,7 @@ cdef class Tokenizer:
start = infix_end
span = string[start:]
if span:
tokens.push_back(self.vocab.get(tokens.mem, span), False)
cdef vector[const LexemeC*].reverse_iterator it = suffixes.rbegin()
while it != suffixes.rend():