spaCy/spacy/tokens.pyx

511 lines
16 KiB
Cython
Raw Normal View History

2014-12-30 13:22:00 +03:00
# cython: embedsignature=True
2014-12-27 10:45:16 +03:00
2014-12-04 12:46:55 +03:00
from preshed.maps cimport PreshMap
from preshed.counter cimport PreshCounter
2014-12-24 09:42:00 +03:00
from .vocab cimport EMPTY_LEXEME
2014-12-21 23:25:43 +03:00
from .typedefs cimport attr_id_t, attr_t
from .typedefs cimport LEMMA
from .typedefs cimport ID, ORTH, NORM, LOWER, SHAPE, PREFIX, SUFFIX, LENGTH, CLUSTER
2014-12-24 09:42:00 +03:00
from .typedefs cimport POS, LEMMA
from .parts_of_speech import UNIV_POS_NAMES
from .lexeme cimport check_flag
2014-12-24 09:42:00 +03:00
2015-01-21 18:05:37 +03:00
from unidecode import unidecode
2015-01-19 11:59:55 +03:00
cimport numpy
import numpy
2014-10-22 05:55:42 +04:00
cimport cython
from cpython.mem cimport PyMem_Malloc, PyMem_Free
from libc.string cimport memcpy
2014-09-15 03:31:44 +04:00
DEF PADDING = 5
cdef int bounds_check(int i, int length, int padding) except -1:
if (i + padding) < 0:
raise IndexError
if (i - padding) >= length:
raise IndexError
2014-09-15 03:31:44 +04:00
2014-12-24 09:42:00 +03:00
cdef attr_t get_token_attr(const TokenC* token, attr_id_t feat_name) nogil:
if feat_name == LEMMA:
return token.lemma
elif feat_name == POS:
return token.pos
else:
return get_lex_attr(token.lex, feat_name)
cdef attr_t get_lex_attr(const LexemeC* lex, attr_id_t feat_name) nogil:
2014-12-24 09:42:00 +03:00
if feat_name < (sizeof(flags_t) * 8):
return check_flag(lex, feat_name)
elif feat_name == ID:
return lex.id
2015-01-22 18:08:25 +03:00
elif feat_name == ORTH:
return lex.orth
elif feat_name == LOWER:
return lex.lower
elif feat_name == NORM:
return lex.norm
2014-12-24 09:42:00 +03:00
elif feat_name == SHAPE:
return lex.shape
elif feat_name == PREFIX:
return lex.prefix
elif feat_name == SUFFIX:
return lex.suffix
elif feat_name == LENGTH:
return lex.length
elif feat_name == CLUSTER:
return lex.cluster
else:
return 0
2014-09-10 20:11:13 +04:00
cdef class Tokens:
"""
Container class for annotated text. Constructed via English.__call__ or
Tokenizer.__call__.
"""
def __cinit__(self, Vocab vocab, unicode string):
2014-12-21 23:25:43 +03:00
self.vocab = vocab
self._string = string
string_length = len(string)
if string_length >= 3:
size = int(string_length / 3.0)
else:
size = 5
self.mem = Pool()
# Guarantee self.lex[i-x], for any i >= 0 and x < padding is in bounds
# However, we need to remember the true starting places, so that we can
# realloc.
data_start = <TokenC*>self.mem.alloc(size + (PADDING*2), sizeof(TokenC))
2014-10-22 21:01:17 +04:00
cdef int i
for i in range(size + (PADDING*2)):
2014-12-07 14:07:41 +03:00
data_start[i].lex = &EMPTY_LEXEME
self.data = data_start + PADDING
self.max_length = size
self.length = 0
self.is_tagged = False
self.is_parsed = False
self._py_tokens = []
self._tag_strings = tuple() # These will be set by the POS tagger and parser
self._dep_strings = tuple() # The strings are arbitrary and model-specific.
self._ent_strings = tuple() # TODO: Clean this up
2014-10-14 11:22:41 +04:00
def __getitem__(self, object i):
2014-12-27 10:45:16 +03:00
"""Retrieve a token.
2015-01-30 10:04:41 +03:00
The Python Token objects are created lazily from internal C data, and
cached in _py_tokens
2014-12-27 10:45:16 +03:00
Returns:
token (Token):
"""
2015-01-19 17:16:29 +03:00
if i < 0:
2015-02-07 20:58:46 +03:00
i = self.length + i
bounds_check(i, self.length, PADDING)
return Token.cinit(self.vocab, self._string,
&self.data[i], i, self.length,
self, self._tag_strings, self._dep_strings)
2014-09-11 23:37:32 +04:00
2014-11-03 17:07:08 +03:00
def __iter__(self):
2014-12-27 10:45:16 +03:00
"""Iterate over the tokens.
Yields:
token (Token):
"""
2014-11-03 17:07:08 +03:00
for i in range(self.length):
yield Token.cinit(self.vocab, self._string,
&self.data[i], i, self.length,
self, self._tag_strings, self._dep_strings)
2014-11-03 17:07:08 +03:00
2014-09-11 23:37:32 +04:00
def __len__(self):
return self.length
2014-09-11 23:37:32 +04:00
def __unicode__(self):
cdef const TokenC* last = &self.data[self.length - 1]
return self._string[:last.idx + last.lex.length]
property ents:
def __get__(self):
cdef int i
cdef const TokenC* token
cdef int start = -1
cdef object label = None
for i in range(self.length):
token = &self.data[i]
if token.ent_iob == 1:
assert start != -1
pass
elif token.ent_iob == 2:
if start != -1:
yield (start, i, label)
start = -1
label = None
elif token.ent_iob == 3:
start = i
label = self._ent_strings[token.ent_type]
if start != -1:
yield (start, self.length, label)
cdef int push_back(self, int idx, LexemeOrToken lex_or_tok) except -1:
if self.length == self.max_length:
self._realloc(self.length * 2)
cdef TokenC* t = &self.data[self.length]
if LexemeOrToken is TokenC_ptr:
t[0] = lex_or_tok[0]
else:
t.lex = lex_or_tok
2014-12-24 09:42:00 +03:00
t.idx = idx
self.length += 1
2015-01-30 10:04:41 +03:00
self._py_tokens.append(None)
return idx + t.lex.length
2014-12-04 12:46:55 +03:00
@cython.boundscheck(False)
cpdef long[:,:] to_array(self, object py_attr_ids):
2014-12-27 13:46:04 +03:00
"""Given a list of M attribute IDs, export the tokens to a numpy ndarray
of shape N*M, where N is the length of the sentence.
Arguments:
attr_ids (list[int]): A list of attribute ID ints.
Returns:
feat_array (numpy.ndarray[long, ndim=2]):
A feature matrix, with one row per word, and one column per attribute
indicated in the input attr_ids.
2014-12-27 13:46:04 +03:00
"""
2014-12-02 15:48:05 +03:00
cdef int i, j
2014-12-04 12:46:55 +03:00
cdef attr_id_t feature
cdef numpy.ndarray[long, ndim=2] output
# Make an array from the attributes --- otherwise our inner loop is Python
# dict iteration.
cdef numpy.ndarray[long, ndim=1] attr_ids = numpy.asarray(py_attr_ids)
output = numpy.ndarray(shape=(self.length, len(attr_ids)), dtype=numpy.int)
2014-12-02 15:48:05 +03:00
for i in range(self.length):
2014-12-04 12:46:55 +03:00
for j, feature in enumerate(attr_ids):
2014-12-24 09:42:00 +03:00
output[i, j] = get_token_attr(&self.data[i], feature)
2014-12-02 15:48:05 +03:00
return output
2015-01-21 18:05:37 +03:00
def count_by(self, attr_id_t attr_id, exclude=None):
2014-12-27 13:46:04 +03:00
"""Produce a dict of {attribute (int): count (ints)} frequencies, keyed
by the values of the given attribute ID.
>>> from spacy.en import English, attrs
>>> nlp = English()
>>> tokens = nlp(u'apple apple orange banana')
2015-01-22 18:08:25 +03:00
>>> tokens.count_by(attrs.ORTH)
2014-12-27 13:46:04 +03:00
{12800L: 1, 11880L: 2, 7561L: 1}
2015-01-22 18:08:25 +03:00
>>> tokens.to_array([attrs.ORTH])
2014-12-27 13:46:04 +03:00
array([[11880],
[11880],
[ 7561],
[12800]])
"""
2014-12-04 12:46:55 +03:00
cdef int i
cdef attr_t attr
cdef size_t count
cdef PreshCounter counts = PreshCounter(2 ** 8)
for i in range(self.length):
2015-01-21 18:05:37 +03:00
if exclude is not None and exclude(self[i]):
continue
2014-12-24 09:42:00 +03:00
attr = get_token_attr(&self.data[i], attr_id)
2014-12-04 12:46:55 +03:00
counts.inc(attr, 1)
return dict(counts)
def _realloc(self, new_size):
self.max_length = new_size
n = new_size + (PADDING * 2)
2014-12-07 14:07:41 +03:00
# What we're storing is a "padded" array. We've jumped forward PADDING
# places, and are storing the pointer to that. This way, we can access
# words out-of-bounds, and get out-of-bounds markers.
# Now that we want to realloc, we need the address of the true start,
# so we jump the pointer back PADDING places.
cdef TokenC* data_start = self.data - PADDING
data_start = <TokenC*>self.mem.realloc(data_start, n * sizeof(TokenC))
self.data = data_start + PADDING
cdef int i
for i in range(self.length, self.max_length + PADDING):
2014-12-07 14:07:41 +03:00
self.data[i].lex = &EMPTY_LEXEME
2014-09-15 03:31:44 +04:00
@property
def sents(self):
"""This is really only a place-holder for a proper solution."""
cdef int i
cdef Tokens sent = Tokens(self.vocab, self._string[self.data[0].idx:])
start = None
for i in range(self.length):
if start is None:
start = i
if self.data[i].sent_end:
2015-03-14 02:21:16 +03:00
yield Span(self, start, i+1)
start = None
if start is not None:
2015-03-14 02:21:16 +03:00
yield Span(self, start, self.length)
cdef int set_parse(self, const TokenC* parsed, dict label_ids) except -1:
self._py_tokens = [None] * self.length
self.is_parsed = True
for i in range(self.length):
self.data[i] = parsed[i]
dep_strings = [None] * len(label_ids)
for dep_string, id_ in label_ids.items():
dep_strings[id_] = dep_string
self._dep_strings = tuple(dep_strings)
2014-09-15 03:31:44 +04:00
2015-03-14 02:21:16 +03:00
cdef class Span:
"""A slice from a Tokens object."""
def __cinit__(self, Tokens tokens, int start, int end):
self._seq = tokens
self.start = start
self.end = end
def __len__(self):
if self.end < self.start:
return 0
return self.end - self.start
def __getitem__(self, int i):
return self._seq[self.start + i]
def __iter__(self):
for i in range(self.start, self.end):
yield self._seq[i]
cdef class Token:
"""An individual token --- i.e. a word, a punctuation symbol, etc. Created
via Tokens.__getitem__ and Tokens.__iter__.
"""
def __cinit__(self, Vocab vocab, unicode string):
self.vocab = vocab
self._string = string
2014-12-24 09:42:00 +03:00
def __dealloc__(self):
if self._owns_c_data:
# Cast through const, if we own the data
PyMem_Free(<void*>self.c)
2014-12-24 09:42:00 +03:00
def __len__(self):
return self.c.lex.length
def __unicode__(self):
return self.string
cpdef bint check_flag(self, attr_id_t flag_id) except -1:
return check_flag(self.c.lex, flag_id)
cdef int take_ownership_of_c_data(self) except -1:
owned_data = <TokenC*>PyMem_Malloc(sizeof(TokenC) * self.array_len)
memcpy(owned_data, self.c, sizeof(TokenC) * self.array_len)
self.c = owned_data
self._owns_c_data = True
def nbor(self, int i=1):
return Token.cinit(self.vocab, self._string,
self.c, self.i, self.array_len,
self._seq, self._tag_strings, self._dep_strings)
property string:
def __get__(self):
cdef int next_idx = (self.c + 1).idx
if next_idx < self.c.idx:
next_idx = self.c.idx + self.c.lex.length
return self._string[self.c.idx:next_idx]
property prob:
def __get__(self):
return self.c.lex.prob
property idx:
def __get__(self):
return self.c.idx
property cluster:
def __get__(self):
return self.c.lex.cluster
property orth:
def __get__(self):
return self.c.lex.orth
property lower:
def __get__(self):
return self.c.lex.lower
property norm:
def __get__(self):
return self.c.lex.norm
property shape:
def __get__(self):
return self.c.lex.shape
property prefix:
def __get__(self):
return self.c.lex.prefix
property suffix:
def __get__(self):
return self.c.lex.suffix
property lemma:
def __get__(self):
return self.c.lemma
property pos:
def __get__(self):
return self.c.pos
property tag:
def __get__(self):
return self.c.tag
property dep:
def __get__(self):
return self.c.dep
property repvec:
def __get__(self):
return numpy.asarray(<float[:300,]> self.c.lex.repvec)
property n_lefts:
def __get__(self):
cdef int n = 0
cdef const TokenC* ptr = self.c - self.i
while ptr != self.c:
if ptr + ptr.head == self.c:
n += 1
2015-02-18 06:07:44 +03:00
ptr += 1
return n
property n_rights:
def __get__(self):
cdef int n = 0
cdef const TokenC* ptr = self.c + (self.array_len - self.i)
while ptr != self.c:
if ptr + ptr.head == self.c:
n += 1
ptr -= 1
return n
property lefts:
def __get__(self):
"""The leftward immediate children of the word, in the syntactic
dependency parse.
"""
cdef const TokenC* ptr = self.c - self.i
while ptr < self.c:
# If this head is still to the right of us, we can skip to it
# No token that's between this token and this head could be our
# child.
if (ptr.head >= 1) and (ptr + ptr.head) < self.c:
ptr += ptr.head
elif ptr + ptr.head == self.c:
yield Token.cinit(self.vocab, self._string,
ptr, ptr - (self.c - self.i), self.array_len,
self._seq, self._tag_strings, self._dep_strings)
ptr += 1
else:
ptr += 1
property rights:
def __get__(self):
"""The rightward immediate children of the word, in the syntactic
dependency parse."""
cdef const TokenC* ptr = (self.c - self.i) + (self.array_len - 1)
while ptr > self.c:
# If this head is still to the right of us, we can skip to it
# No token that's between this token and this head could be our
# child.
if (ptr.head < 0) and ((ptr + ptr.head) > self.c):
ptr += ptr.head
elif ptr + ptr.head == self.c:
yield Token.cinit(self.vocab, self._string,
ptr, ptr - (self.c - self.i), self.array_len,
self._seq, self._tag_strings, self._dep_strings)
ptr -= 1
else:
ptr -= 1
property children:
def __get__(self):
yield from self.lefts
yield from self.rights
property subtree:
def __get__(self):
for word in self.lefts:
yield from word.subtree
yield self
for word in self.rights:
yield from word.subtree
property head:
def __get__(self):
"""The token predicted by the parser to be the head of the current token."""
return Token.cinit(self.vocab, self._string,
self.c + self.c.head, self.i + self.c.head, self.array_len,
self._seq, self._tag_strings, self._dep_strings)
property whitespace_:
def __get__(self):
return self.string[self.c.lex.length:]
property orth_:
def __get__(self):
return self.vocab.strings[self.c.lex.orth]
property lower_:
def __get__(self):
return self.vocab.strings[self.c.lex.lower]
property norm_:
def __get__(self):
return self.vocab.strings[self.c.lex.norm]
property shape_:
def __get__(self):
return self.vocab.strings[self.c.lex.shape]
property prefix_:
def __get__(self):
return self.vocab.strings[self.c.lex.prefix]
property suffix_:
def __get__(self):
return self.vocab.strings[self.c.lex.suffix]
property lemma_:
def __get__(self):
return self.vocab.strings[self.c.lemma]
property pos_:
def __get__(self):
return _pos_id_to_string[self.c.pos]
property tag_:
def __get__(self):
return self._tag_strings[self.c.tag]
property dep_:
def __get__(self):
return self._dep_strings[self.c.dep]
_pos_id_to_string = {id_: string for string, id_ in UNIV_POS_NAMES.items()}
2015-01-30 10:04:41 +03:00
_parse_unset_error = """Text has not been parsed, so cannot be accessed.
2015-01-30 10:04:41 +03:00
Check that the parser data is installed. Run "python -m spacy.en.download" if not.
Check whether parse=False in the call to English.__call__
"""