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
|
|
|
|
|
|
|
|
from .morphology cimport set_morph_from_dict
|
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
|
|
|
|
from .util import read_lang_data
|
2015-07-13 21:20:58 +03:00
|
|
|
from .tokens.doc cimport Doc
|
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
|
2015-07-08 13:36:04 +03:00
|
|
|
self._load_special_tokenization(rules, self.vocab.pos_tags)
|
2015-07-07 15:00:07 +03:00
|
|
|
|
|
|
|
@classmethod
|
2015-07-08 13:36:04 +03:00
|
|
|
def from_dir(cls, Vocab vocab, data_dir):
|
2015-07-07 15:23:08 +03:00
|
|
|
rules, prefix_re, suffix_re, infix_re = read_lang_data(data_dir)
|
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
|
|
|
"""
|
|
|
|
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-22 05:49:39 +03:00
|
|
|
chars = <Py_UNICODE*>string
|
2014-12-19 23:54:49 +03:00
|
|
|
cdef bint in_ws = Py_UNICODE_ISSPACE(chars[0])
|
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.
|
2014-12-19 23:54:49 +03:00
|
|
|
for i in range(1, length):
|
2015-06-06 06:57:03 +03:00
|
|
|
if Py_UNICODE_ISSPACE(chars[i]) != in_ws:
|
2014-12-19 23:54:49 +03:00
|
|
|
if start < i:
|
2015-07-22 05:49:39 +03:00
|
|
|
span = string[start:i]
|
|
|
|
key = hash_string(span)
|
|
|
|
cache_hit = self._try_cache(key, tokens)
|
2014-12-19 23:54:49 +03:00
|
|
|
if not cache_hit:
|
2015-07-22 05:49:39 +03:00
|
|
|
self._tokenize(tokens, span, key)
|
2014-12-19 23:54:49 +03:00
|
|
|
in_ws = not in_ws
|
|
|
|
start = i
|
|
|
|
if chars[i] == ' ':
|
2015-07-13 22:46:02 +03:00
|
|
|
tokens.data[tokens.length - 1].spacy = True
|
2014-12-19 23:54:49 +03:00
|
|
|
start += 1
|
|
|
|
i += 1
|
|
|
|
if start < i:
|
2015-07-22 05:49:39 +03:00
|
|
|
span = string[start:i]
|
|
|
|
key = hash_string(span)
|
|
|
|
cache_hit = self._try_cache(key, tokens)
|
2014-12-19 23:54:49 +03:00
|
|
|
if not cache_hit:
|
2015-07-22 05:49:39 +03:00
|
|
|
self._tokenize(tokens, span, key)
|
2015-07-13 22:46:02 +03:00
|
|
|
|
|
|
|
tokens.data[tokens.length - 1].spacy = string[-1] == ' '
|
2014-12-19 23:54:49 +03:00
|
|
|
return tokens
|
|
|
|
|
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
|
2015-07-22 05:49:39 +03:00
|
|
|
span = self._split_affixes(span, &prefixes, &suffixes)
|
|
|
|
self._attach_tokens(tokens, span, &prefixes, &suffixes)
|
2014-12-19 23:54:49 +03:00
|
|
|
self._save_cached(&tokens.data[orig_size], orig_key, tokens.length - orig_size)
|
|
|
|
|
2015-07-22 05:49:39 +03:00
|
|
|
cdef unicode _split_affixes(self, unicode string, vector[const LexemeC*] *prefixes,
|
|
|
|
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
|
|
|
|
prefixes.push_back(self.vocab.get(self.vocab.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
|
|
|
|
suffixes.push_back(self.vocab.get(self.vocab.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]
|
|
|
|
prefixes.push_back(self.vocab.get(self.vocab.mem, prefix))
|
|
|
|
suffixes.push_back(self.vocab.get(self.vocab.mem, suffix))
|
2014-12-19 23:54:49 +03:00
|
|
|
elif pre_len:
|
2015-07-22 05:49:39 +03:00
|
|
|
string = minus_pre
|
|
|
|
prefixes.push_back(self.vocab.get(self.vocab.mem, prefix))
|
2014-12-19 23:54:49 +03:00
|
|
|
elif suf_len:
|
2015-07-22 05:49:39 +03:00
|
|
|
string = minus_suf
|
|
|
|
suffixes.push_back(self.vocab.get(self.vocab.mem, suffix))
|
|
|
|
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)
|
2014-12-19 23:54:49 +03:00
|
|
|
if cache_hit:
|
2015-07-13 22:46:02 +03:00
|
|
|
pass
|
2014-12-19 23:54:49 +03:00
|
|
|
else:
|
2015-07-22 05:49:39 +03:00
|
|
|
match = self.find_infix(string)
|
2015-07-18 23:45:00 +03:00
|
|
|
if match is None:
|
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:
|
2015-07-18 23:45:00 +03:00
|
|
|
split = match.start()
|
|
|
|
end = match.end()
|
2015-07-22 05:49:39 +03:00
|
|
|
# Append the beginning, affix, end of the infix span
|
|
|
|
span = string[:split]
|
|
|
|
tokens.push_back(self.vocab.get(tokens.mem, span), False)
|
2015-07-18 23:45:00 +03:00
|
|
|
|
2015-07-22 05:49:39 +03:00
|
|
|
span = string[split:end]
|
|
|
|
tokens.push_back(self.vocab.get(tokens.mem, span), False)
|
2015-07-18 23:45:00 +03:00
|
|
|
|
2015-07-22 05:49:39 +03:00
|
|
|
span = string[end:]
|
|
|
|
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):
|
2015-07-18 23:45:00 +03:00
|
|
|
return self._infix_re.search(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-07-07 15:00:07 +03:00
|
|
|
def _load_special_tokenization(self, object rules, object tag_map):
|
2014-12-19 23:54:49 +03:00
|
|
|
'''Add a special-case tokenization rule.
|
|
|
|
'''
|
|
|
|
cdef int i
|
|
|
|
cdef list substrings
|
2015-07-22 05:49:39 +03:00
|
|
|
cdef unicode chunk
|
2014-12-19 23:54:49 +03:00
|
|
|
cdef unicode form
|
|
|
|
cdef unicode lemma
|
|
|
|
cdef dict props
|
2015-01-12 02:26:22 +03:00
|
|
|
cdef LexemeC** lexemes
|
2014-12-19 23:54:49 +03:00
|
|
|
cdef hash_t hashed
|
|
|
|
for chunk, substrings in sorted(rules.items()):
|
|
|
|
tokens = <TokenC*>self.mem.alloc(len(substrings) + 1, sizeof(TokenC))
|
|
|
|
for i, props in enumerate(substrings):
|
|
|
|
form = props['F']
|
|
|
|
lemma = props.get("L", None)
|
2015-07-22 05:49:39 +03:00
|
|
|
tokens[i].lex = <LexemeC*>self.vocab.get(self.vocab.mem, form)
|
2015-03-26 05:17:24 +03:00
|
|
|
if lemma is not None:
|
2014-12-19 23:54:49 +03:00
|
|
|
tokens[i].lemma = self.vocab.strings[lemma]
|
2015-02-09 02:30:30 +03:00
|
|
|
else:
|
|
|
|
tokens[i].lemma = 0
|
2014-12-30 15:24:37 +03:00
|
|
|
if 'pos' in props:
|
2015-03-16 02:24:47 +03:00
|
|
|
tokens[i].tag = self.vocab.strings[props['pos']]
|
2014-12-30 15:24:37 +03:00
|
|
|
tokens[i].pos = tag_map[props['pos']][0]
|
|
|
|
# These are defaults, which can be over-ridden by the
|
|
|
|
# token-specific props.
|
|
|
|
set_morph_from_dict(&tokens[i].morph, tag_map[props['pos']][1])
|
2015-02-09 02:30:30 +03:00
|
|
|
if tokens[i].lemma == 0:
|
|
|
|
tokens[i].lemma = tokens[i].lex.orth
|
2014-12-19 23:54:49 +03:00
|
|
|
set_morph_from_dict(&tokens[i].morph, props)
|
|
|
|
cached = <_Cached*>self.mem.alloc(1, sizeof(_Cached))
|
|
|
|
cached.length = len(substrings)
|
|
|
|
cached.is_lex = False
|
|
|
|
cached.data.tokens = tokens
|
2015-07-22 05:49:39 +03:00
|
|
|
hashed = hash_string(chunk)
|
|
|
|
self._specials.set(hashed, cached)
|
|
|
|
self._cache.set(hashed, cached)
|