2014-12-19 23:54:49 +03:00
|
|
|
# cython: embedsignature=True
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
2014-12-20 21:36:29 +03:00
|
|
|
from os import path
|
2014-12-21 23:25:43 +03:00
|
|
|
import re
|
2014-12-20 21:36:29 +03:00
|
|
|
|
2014-12-19 23:54:49 +03:00
|
|
|
from cython.operator cimport dereference as deref
|
|
|
|
from cython.operator cimport preincrement as preinc
|
2015-07-22 05:49:39 +03:00
|
|
|
from cpython cimport Py_UNICODE_ISSPACE
|
2014-12-19 23:54:49 +03:00
|
|
|
|
|
|
|
from cymem.cymem cimport Pool
|
|
|
|
from preshed.maps cimport PreshMap
|
|
|
|
|
2015-07-22 05:49:39 +03:00
|
|
|
from .strings cimport hash_string
|
|
|
|
cimport cython
|
2014-12-19 23:54:49 +03:00
|
|
|
|
|
|
|
from . import util
|
2015-07-13 21:20:58 +03:00
|
|
|
from .tokens.doc cimport Doc
|
2016-03-25 20:54:45 +03:00
|
|
|
from .util import read_lang_data, get_package
|
2014-12-19 23:54:49 +03:00
|
|
|
|
|
|
|
|
|
|
|
cdef class Tokenizer:
|
2015-07-08 13:36:04 +03:00
|
|
|
def __init__(self, Vocab vocab, rules, prefix_re, suffix_re, infix_re):
|
2014-12-19 23:54:49 +03:00
|
|
|
self.mem = Pool()
|
|
|
|
self._cache = PreshMap()
|
|
|
|
self._specials = PreshMap()
|
|
|
|
self._prefix_re = prefix_re
|
|
|
|
self._suffix_re = suffix_re
|
|
|
|
self._infix_re = infix_re
|
2014-12-21 23:25:43 +03:00
|
|
|
self.vocab = vocab
|
2016-04-13 11:38:26 +03:00
|
|
|
self._rules = {}
|
|
|
|
for chunk, substrings in sorted(rules.items()):
|
|
|
|
self.add_special_case(chunk, substrings)
|
2015-10-24 08:18:47 +03:00
|
|
|
|
|
|
|
def __reduce__(self):
|
|
|
|
args = (self.vocab,
|
|
|
|
self._rules,
|
|
|
|
self._prefix_re,
|
|
|
|
self._suffix_re,
|
|
|
|
self._infix_re)
|
|
|
|
|
|
|
|
return (self.__class__, args, None, None)
|
2015-07-07 15:00:07 +03:00
|
|
|
|
|
|
|
@classmethod
|
2016-01-16 14:23:45 +03:00
|
|
|
def load(cls, data_dir, Vocab vocab):
|
|
|
|
return cls.from_package(get_package(data_dir), vocab=vocab)
|
2016-01-16 12:00:57 +03:00
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def from_package(cls, package, Vocab vocab):
|
|
|
|
rules, prefix_re, suffix_re, infix_re = read_lang_data(package)
|
2015-07-07 15:00:07 +03:00
|
|
|
prefix_re = re.compile(prefix_re)
|
|
|
|
suffix_re = re.compile(suffix_re)
|
|
|
|
infix_re = re.compile(infix_re)
|
2015-07-08 13:36:04 +03:00
|
|
|
return cls(vocab, rules, prefix_re, suffix_re, infix_re)
|
2014-12-19 23:54:49 +03:00
|
|
|
|
2015-07-08 19:53:00 +03:00
|
|
|
cpdef Doc tokens_from_list(self, list strings):
|
2015-07-13 22:46:02 +03:00
|
|
|
cdef Doc tokens = Doc(self.vocab)
|
|
|
|
if sum([len(s) for s in strings]) == 0:
|
2014-12-19 23:54:49 +03:00
|
|
|
return tokens
|
|
|
|
cdef unicode py_string
|
|
|
|
cdef int idx = 0
|
|
|
|
for i, py_string in enumerate(strings):
|
2015-07-13 22:46:02 +03:00
|
|
|
# Note that we pass tokens.mem here --- the Doc object has ownership
|
|
|
|
tokens.push_back(
|
2015-07-22 05:49:39 +03:00
|
|
|
<const LexemeC*>self.vocab.get(tokens.mem, py_string), True)
|
2014-12-19 23:54:49 +03:00
|
|
|
idx += len(py_string) + 1
|
|
|
|
return tokens
|
|
|
|
|
2015-07-22 05:49:39 +03:00
|
|
|
@cython.boundscheck(False)
|
2015-01-17 08:21:17 +03:00
|
|
|
def __call__(self, unicode string):
|
2014-12-19 23:54:49 +03:00
|
|
|
"""Tokenize a string.
|
|
|
|
|
|
|
|
The tokenization rules are defined in three places:
|
|
|
|
|
|
|
|
* The data/<lang>/tokenization table, which handles special cases like contractions;
|
|
|
|
* The data/<lang>/prefix file, used to build a regex to split off prefixes;
|
|
|
|
* The data/<lang>/suffix file, used to build a regex to split off suffixes.
|
|
|
|
|
|
|
|
The string is first split on whitespace. To tokenize a whitespace-delimited
|
|
|
|
chunk, we first try to look it up in the special-cases. If it's not found,
|
|
|
|
we split off a prefix, and then try again. If it's still not found, we
|
|
|
|
split off a suffix, and repeat.
|
|
|
|
|
|
|
|
Args:
|
2015-04-19 11:31:31 +03:00
|
|
|
string (unicode): The string to be tokenized.
|
2014-12-19 23:54:49 +03:00
|
|
|
|
|
|
|
Returns:
|
2015-07-08 19:53:00 +03:00
|
|
|
tokens (Doc): A Doc object, giving access to a sequence of LexemeCs.
|
2014-12-19 23:54:49 +03:00
|
|
|
"""
|
2015-10-15 20:54:16 +03:00
|
|
|
if len(string) >= (2 ** 30):
|
|
|
|
raise ValueError(
|
|
|
|
"String is too long: %d characters. Max is 2**30." % len(string)
|
|
|
|
)
|
2014-12-19 23:54:49 +03:00
|
|
|
cdef int length = len(string)
|
2015-07-13 22:46:02 +03:00
|
|
|
cdef Doc tokens = Doc(self.vocab)
|
2014-12-19 23:54:49 +03:00
|
|
|
if length == 0:
|
|
|
|
return tokens
|
|
|
|
cdef int i = 0
|
|
|
|
cdef int start = 0
|
|
|
|
cdef bint cache_hit
|
2015-07-28 15:45:37 +03:00
|
|
|
cdef bint in_ws = False
|
2015-07-22 05:49:39 +03:00
|
|
|
cdef unicode span
|
|
|
|
# The task here is much like string.split, but not quite
|
|
|
|
# We find spans of whitespace and non-space characters, and ignore
|
|
|
|
# spans that are exactly ' '. So, our sequences will all be separated
|
|
|
|
# by either ' ' or nothing.
|
2015-07-28 15:45:37 +03:00
|
|
|
for uc in string:
|
|
|
|
if uc.isspace() != in_ws:
|
2014-12-19 23:54:49 +03:00
|
|
|
if start < i:
|
2015-07-28 15:45:37 +03:00
|
|
|
# When we want to make this fast, get the data buffer once
|
|
|
|
# with PyUnicode_AS_DATA, and then maintain a start_byte
|
|
|
|
# and end_byte, so we can call hash64 directly. That way
|
|
|
|
# we don't have to create the slice when we hit the cache.
|
|
|
|
span = string[start:i]
|
|
|
|
key = hash_string(span)
|
2015-07-22 05:49:39 +03:00
|
|
|
cache_hit = self._try_cache(key, tokens)
|
2014-12-19 23:54:49 +03:00
|
|
|
if not cache_hit:
|
2015-07-28 15:45:37 +03:00
|
|
|
self._tokenize(tokens, span, key)
|
2014-12-19 23:54:49 +03:00
|
|
|
in_ws = not in_ws
|
2015-07-22 14:38:45 +03:00
|
|
|
if uc == ' ':
|
2015-11-03 16:15:14 +03:00
|
|
|
tokens.c[tokens.length - 1].spacy = True
|
2015-07-22 14:38:45 +03:00
|
|
|
start = i + 1
|
|
|
|
else:
|
|
|
|
start = i
|
2015-07-28 15:45:37 +03:00
|
|
|
i += 1
|
2014-12-19 23:54:49 +03:00
|
|
|
i += 1
|
|
|
|
if start < i:
|
2015-07-28 15:45:37 +03:00
|
|
|
span = string[start:]
|
|
|
|
key = hash_string(span)
|
2015-07-22 05:49:39 +03:00
|
|
|
cache_hit = self._try_cache(key, tokens)
|
2014-12-19 23:54:49 +03:00
|
|
|
if not cache_hit:
|
2015-07-28 15:45:37 +03:00
|
|
|
self._tokenize(tokens, span, key)
|
2016-01-16 19:08:59 +03:00
|
|
|
tokens.c[tokens.length - 1].spacy = string[-1] == ' ' and not in_ws
|
2014-12-19 23:54:49 +03:00
|
|
|
return tokens
|
|
|
|
|
2016-02-03 04:32:37 +03:00
|
|
|
def pipe(self, texts, batch_size=1000, n_threads=2):
|
|
|
|
for text in texts:
|
|
|
|
yield self(text)
|
|
|
|
|
2015-07-13 22:46:02 +03:00
|
|
|
cdef int _try_cache(self, hash_t key, Doc tokens) except -1:
|
2014-12-19 23:54:49 +03:00
|
|
|
cached = <_Cached*>self._cache.get(key)
|
|
|
|
if cached == NULL:
|
|
|
|
return False
|
|
|
|
cdef int i
|
|
|
|
if cached.is_lex:
|
2015-07-14 01:10:51 +03:00
|
|
|
for i in range(cached.length):
|
2015-07-13 22:46:02 +03:00
|
|
|
tokens.push_back(cached.data.lexemes[i], False)
|
2014-12-19 23:54:49 +03:00
|
|
|
else:
|
2015-07-14 01:10:51 +03:00
|
|
|
for i in range(cached.length):
|
2015-07-13 22:46:02 +03:00
|
|
|
tokens.push_back(&cached.data.tokens[i], False)
|
2014-12-19 23:54:49 +03:00
|
|
|
return True
|
|
|
|
|
2015-07-22 05:49:39 +03:00
|
|
|
cdef int _tokenize(self, Doc tokens, unicode span, hash_t orig_key) except -1:
|
2015-01-12 02:26:22 +03:00
|
|
|
cdef vector[LexemeC*] prefixes
|
|
|
|
cdef vector[LexemeC*] suffixes
|
2014-12-19 23:54:49 +03:00
|
|
|
cdef int orig_size
|
|
|
|
orig_size = tokens.length
|
2016-02-22 02:17:47 +03:00
|
|
|
span = self._split_affixes(tokens.mem, span, &prefixes, &suffixes)
|
2015-07-22 05:49:39 +03:00
|
|
|
self._attach_tokens(tokens, span, &prefixes, &suffixes)
|
2015-11-03 16:15:14 +03:00
|
|
|
self._save_cached(&tokens.c[orig_size], orig_key, tokens.length - orig_size)
|
2014-12-19 23:54:49 +03:00
|
|
|
|
2016-04-13 11:38:26 +03:00
|
|
|
cdef unicode _split_affixes(self, Pool mem, unicode string,
|
|
|
|
vector[const LexemeC*] *prefixes,
|
2015-07-22 05:49:39 +03:00
|
|
|
vector[const LexemeC*] *suffixes):
|
2014-12-19 23:54:49 +03:00
|
|
|
cdef size_t i
|
2015-07-22 05:49:39 +03:00
|
|
|
cdef unicode prefix
|
|
|
|
cdef unicode suffix
|
|
|
|
cdef unicode minus_pre
|
|
|
|
cdef unicode minus_suf
|
2014-12-19 23:54:49 +03:00
|
|
|
cdef size_t last_size = 0
|
2015-07-22 05:49:39 +03:00
|
|
|
while string and len(string) != last_size:
|
|
|
|
last_size = len(string)
|
|
|
|
pre_len = self.find_prefix(string)
|
2014-12-19 23:54:49 +03:00
|
|
|
if pre_len != 0:
|
2015-07-22 05:49:39 +03:00
|
|
|
prefix = string[:pre_len]
|
|
|
|
minus_pre = string[pre_len:]
|
2014-12-19 23:54:49 +03:00
|
|
|
# Check whether we've hit a special-case
|
2015-07-22 05:49:39 +03:00
|
|
|
if minus_pre and self._specials.get(hash_string(minus_pre)) != NULL:
|
|
|
|
string = minus_pre
|
2016-02-22 02:17:47 +03:00
|
|
|
prefixes.push_back(self.vocab.get(mem, prefix))
|
2014-12-19 23:54:49 +03:00
|
|
|
break
|
2015-07-22 05:49:39 +03:00
|
|
|
suf_len = self.find_suffix(string)
|
2014-12-19 23:54:49 +03:00
|
|
|
if suf_len != 0:
|
2015-07-22 05:49:39 +03:00
|
|
|
suffix = string[-suf_len:]
|
|
|
|
minus_suf = string[:-suf_len]
|
2014-12-19 23:54:49 +03:00
|
|
|
# Check whether we've hit a special-case
|
2015-07-22 05:49:39 +03:00
|
|
|
if minus_suf and (self._specials.get(hash_string(minus_suf)) != NULL):
|
|
|
|
string = minus_suf
|
2016-02-22 02:17:47 +03:00
|
|
|
suffixes.push_back(self.vocab.get(mem, suffix))
|
2014-12-19 23:54:49 +03:00
|
|
|
break
|
2015-07-22 05:49:39 +03:00
|
|
|
if pre_len and suf_len and (pre_len + suf_len) <= len(string):
|
|
|
|
string = string[pre_len:-suf_len]
|
2016-02-22 02:17:47 +03:00
|
|
|
prefixes.push_back(self.vocab.get(mem, prefix))
|
|
|
|
suffixes.push_back(self.vocab.get(mem, suffix))
|
2014-12-19 23:54:49 +03:00
|
|
|
elif pre_len:
|
2015-07-22 05:49:39 +03:00
|
|
|
string = minus_pre
|
2016-02-22 02:17:47 +03:00
|
|
|
prefixes.push_back(self.vocab.get(mem, prefix))
|
2014-12-19 23:54:49 +03:00
|
|
|
elif suf_len:
|
2015-07-22 05:49:39 +03:00
|
|
|
string = minus_suf
|
2016-02-22 02:17:47 +03:00
|
|
|
suffixes.push_back(self.vocab.get(mem, suffix))
|
2015-07-22 05:49:39 +03:00
|
|
|
if string and (self._specials.get(hash_string(string)) != NULL):
|
2014-12-19 23:54:49 +03:00
|
|
|
break
|
|
|
|
return string
|
|
|
|
|
2015-07-22 05:49:39 +03:00
|
|
|
cdef int _attach_tokens(self, Doc tokens, unicode string,
|
2015-01-12 02:26:22 +03:00
|
|
|
vector[const LexemeC*] *prefixes,
|
|
|
|
vector[const LexemeC*] *suffixes) except -1:
|
2014-12-19 23:54:49 +03:00
|
|
|
cdef bint cache_hit
|
2015-07-18 23:45:00 +03:00
|
|
|
cdef int split, end
|
2015-01-12 02:26:22 +03:00
|
|
|
cdef const LexemeC* const* lexemes
|
2015-07-13 22:46:02 +03:00
|
|
|
cdef const LexemeC* lexeme
|
2015-07-22 05:49:39 +03:00
|
|
|
cdef unicode span
|
2014-12-19 23:54:49 +03:00
|
|
|
cdef int i
|
|
|
|
if prefixes.size():
|
|
|
|
for i in range(prefixes.size()):
|
2015-07-13 22:46:02 +03:00
|
|
|
tokens.push_back(prefixes[0][i], False)
|
2015-07-22 05:49:39 +03:00
|
|
|
if string:
|
|
|
|
cache_hit = self._try_cache(hash_string(string), tokens)
|
2015-08-28 03:02:33 +03:00
|
|
|
if not cache_hit:
|
2016-04-13 11:38:26 +03:00
|
|
|
matches = self.find_infix(string)
|
|
|
|
if not matches:
|
2015-07-13 22:46:02 +03:00
|
|
|
tokens.push_back(self.vocab.get(tokens.mem, string), False)
|
2014-12-19 23:54:49 +03:00
|
|
|
else:
|
2016-04-13 11:38:26 +03:00
|
|
|
# let's say we have dyn-o-mite-dave
|
|
|
|
# the regex finds the start and end positions of the hyphens
|
|
|
|
start = 0
|
|
|
|
for match in matches:
|
|
|
|
infix_start = match.start()
|
|
|
|
infix_end = match.end()
|
|
|
|
span = string[start:infix_start]
|
|
|
|
tokens.push_back(self.vocab.get(tokens.mem, span), False)
|
2015-07-18 23:45:00 +03:00
|
|
|
|
2016-04-13 11:38:26 +03:00
|
|
|
infix_span = string[infix_start:infix_end]
|
|
|
|
tokens.push_back(self.vocab.get(tokens.mem, infix_span), False)
|
|
|
|
start = infix_end
|
|
|
|
span = string[start:]
|
2015-07-22 05:49:39 +03:00
|
|
|
tokens.push_back(self.vocab.get(tokens.mem, span), False)
|
2015-01-12 02:26:22 +03:00
|
|
|
cdef vector[const LexemeC*].reverse_iterator it = suffixes.rbegin()
|
2014-12-19 23:54:49 +03:00
|
|
|
while it != suffixes.rend():
|
2015-07-13 22:46:02 +03:00
|
|
|
lexeme = deref(it)
|
2014-12-19 23:54:49 +03:00
|
|
|
preinc(it)
|
2015-07-13 22:46:02 +03:00
|
|
|
tokens.push_back(lexeme, False)
|
2014-12-19 23:54:49 +03:00
|
|
|
|
|
|
|
cdef int _save_cached(self, const TokenC* tokens, hash_t key, int n) except -1:
|
|
|
|
cdef int i
|
|
|
|
for i in range(n):
|
2015-07-18 23:45:28 +03:00
|
|
|
if tokens[i].lex.id == 0:
|
2014-12-19 23:54:49 +03:00
|
|
|
return 0
|
|
|
|
cached = <_Cached*>self.mem.alloc(1, sizeof(_Cached))
|
|
|
|
cached.length = n
|
|
|
|
cached.is_lex = True
|
2015-01-12 02:26:22 +03:00
|
|
|
lexemes = <const LexemeC**>self.mem.alloc(n, sizeof(LexemeC**))
|
2014-12-19 23:54:49 +03:00
|
|
|
for i in range(n):
|
|
|
|
lexemes[i] = tokens[i].lex
|
2015-01-12 02:26:22 +03:00
|
|
|
cached.data.lexemes = <const LexemeC* const*>lexemes
|
2014-12-19 23:54:49 +03:00
|
|
|
self._cache.set(key, cached)
|
|
|
|
|
2015-07-22 05:49:39 +03:00
|
|
|
def find_infix(self, unicode string):
|
2016-04-13 11:38:26 +03:00
|
|
|
return list(self._infix_re.finditer(string))
|
2015-04-19 11:31:31 +03:00
|
|
|
|
2015-07-22 05:49:39 +03:00
|
|
|
def find_prefix(self, unicode string):
|
2014-12-19 23:54:49 +03:00
|
|
|
match = self._prefix_re.search(string)
|
|
|
|
return (match.end() - match.start()) if match is not None else 0
|
|
|
|
|
2015-07-22 05:49:39 +03:00
|
|
|
def find_suffix(self, unicode string):
|
2014-12-19 23:54:49 +03:00
|
|
|
match = self._suffix_re.search(string)
|
|
|
|
return (match.end() - match.start()) if match is not None else 0
|
|
|
|
|
2015-08-26 20:20:11 +03:00
|
|
|
def _load_special_tokenization(self, special_cases):
|
2016-04-13 11:38:26 +03:00
|
|
|
'''Add special-case tokenization rules.
|
2014-12-19 23:54:49 +03:00
|
|
|
'''
|
2015-08-26 20:20:11 +03:00
|
|
|
for chunk, substrings in sorted(special_cases.items()):
|
2016-04-13 11:38:26 +03:00
|
|
|
self.add_special_case(chunk, substrings)
|
|
|
|
|
|
|
|
def add_special_case(self, unicode chunk, substrings):
|
|
|
|
'''Add a special-case tokenization rule.
|
|
|
|
|
|
|
|
For instance, "don't" is special-cased to tokenize into
|
|
|
|
["do", "n't"]. The split tokens can have lemmas and part-of-speech
|
|
|
|
tags.
|
|
|
|
'''
|
|
|
|
substrings = list(substrings)
|
|
|
|
cached = <_Cached*>self.mem.alloc(1, sizeof(_Cached))
|
|
|
|
cached.length = len(substrings)
|
|
|
|
cached.is_lex = False
|
|
|
|
cached.data.tokens = self.vocab.make_fused_token(substrings)
|
|
|
|
key = hash_string(chunk)
|
|
|
|
self._specials.set(key, cached)
|
|
|
|
self._cache.set(key, cached)
|
|
|
|
self._rules[chunk] = substrings
|