spaCy/spacy/word.pyx

118 lines
4.4 KiB
Cython
Raw Normal View History

2014-08-24 20:14:08 +04:00
# cython: profile=True
# cython: embedsignature=True
from libc.stdlib cimport calloc, free, realloc
2014-08-24 20:14:08 +04:00
2014-09-10 22:41:47 +04:00
from spacy.lexeme cimport lexeme_free, lexeme_init
from spacy.lexeme cimport lexeme_check_flag, lexeme_string_view
2014-08-25 18:42:22 +04:00
cdef class Lexeme:
2014-08-29 05:01:40 +04:00
"""A lexical type --- a word, punctuation symbol, whitespace sequence, etc
keyed by a case-sensitive unicode string. All tokens with the same string,
e.g. all instances of "dog", ",", "NASA" etc should be mapped to the same
Lexeme.
2014-08-24 20:14:08 +04:00
2014-08-29 05:01:40 +04:00
You should avoid instantiating Lexemes directly, and instead use the
:py:meth:`space.lang.Language.tokenize` and :py:meth:`spacy.lang.Language.lookup`
methods on the global object exposed by the language you're working with,
e.g. :py:data:`spacy.en.EN`.
2014-08-24 20:14:08 +04:00
2014-08-25 18:42:22 +04:00
Attributes:
string (unicode):
The unicode string.
Implemented as a property; relatively expensive.
2014-08-24 20:14:08 +04:00
length (size_t):
2014-08-25 18:42:22 +04:00
The number of unicode code-points in the string.
2014-08-24 20:14:08 +04:00
prob (double):
An estimate of the word's unigram log probability.
Probabilities are calculated from a large text corpus, and smoothed using
simple Good-Turing. Estimates are read from data/en/probabilities, and
can be replaced using spacy.en.load_probabilities.
2014-08-29 05:01:40 +04:00
cluster (size_t):
2014-08-24 20:14:08 +04:00
An integer representation of the word's Brown cluster.
A Brown cluster is an address into a binary tree, which gives some (noisy)
information about the word's distributional context.
>>> strings = (u'pineapple', u'apple', u'dapple', u'scalable')
>>> print ["{0:b"} % lookup(s).cluster for s in strings]
["100111110110", "100111100100", "01010111011001", "100111110110"]
The clusterings are unideal, but often slightly useful.
"pineapple" and "apple" share a long prefix, indicating a similar meaning,
while "dapple" is totally different. On the other hand, "scalable" receives
the same cluster ID as "pineapple", which is not what we'd like.
"""
2014-08-28 21:45:09 +04:00
def __cinit__(self, unicode string, double prob, int cluster, dict case_stats,
dict tag_stats, list string_features, list flag_features):
2014-09-10 22:41:47 +04:00
views = []
cdef unicode view
2014-08-28 21:45:09 +04:00
for string_feature in string_features:
view = string_feature(string, prob, cluster, case_stats, tag_stats)
2014-09-10 22:41:47 +04:00
views.append(view)
2014-09-10 22:41:47 +04:00
flags = set()
2014-08-28 21:45:09 +04:00
for i, flag_feature in enumerate(flag_features):
if flag_feature(string, prob, case_stats, tag_stats):
2014-09-10 22:41:47 +04:00
if (1 << i):
flags.add(i)
self._c = lexeme_init(string, prob, cluster, views, flags)
2014-08-24 20:14:08 +04:00
def __dealloc__(self):
2014-09-10 22:41:47 +04:00
lexeme_free(self._c)
property string:
def __get__(self):
cdef bytes utf8_string = self._c.string
cdef unicode string = utf8_string.decode('utf8')
return string
property prob:
def __get__(self): return self._c.prob
property cluster:
def __get__(self): return self._c.cluster
property length:
def __get__(self): return self._c.length
2014-08-24 20:14:08 +04:00
2014-08-25 18:42:22 +04:00
cpdef bint check_flag(self, size_t flag_id) except *:
2014-08-29 05:01:40 +04:00
"""Lexemes may store language-specific boolean features in a bit-field,
with values accessed by providing an ID constant to this function.
The ID constants are exposed as global variables in the language module,
e.g.
>>> from spacy.en import EN
>>> lexeme = EN.lookup(u'Nasa')
>>> lexeme.check_flag(EN.IS_UPPER)
False
>>> lexeme.check_flag(EN.OFT_UPPER)
True
2014-08-24 20:14:08 +04:00
"""
2014-09-10 22:41:47 +04:00
return lexeme_check_flag(self._c, flag_id)
2014-08-25 18:42:22 +04:00
2014-08-29 05:01:40 +04:00
cpdef unicode string_view(self, size_t view_id):
"""Lexemes may store language-specific string-view features, obtained
by transforming the string, possibly in light of distributional information.
The string-view features are accessed by providing an ID constant to this
function.
The ID constants are exposed as global variables in the language module,
e.g.
>>> from spacy.en import EN
>>> lexeme = EN.lookup(u'Nasa')
>>> lexeme.string_view(EN.CANON_CASED)
u'NASA'
>>> lexeme.string_view(EN.SHAPE)
u'Xxxx'
>>> lexeme.string_view(EN.NON_SPARSE)
u'Xxxx'
"""
2014-09-10 22:41:47 +04:00
return lexeme_string_view(self._c, view_id)