spaCy/spacy/vocab.pyx

463 lines
17 KiB
Cython
Raw Normal View History

# coding: utf8
from __future__ import unicode_literals
import bz2
2017-04-15 13:13:34 +03:00
import ujson
import re
2017-08-22 20:46:35 +03:00
import numpy
import dill
from libc.string cimport memset, memcpy
from libc.stdint cimport int32_t
from libc.math cimport sqrt
from cymem.cymem cimport Address
2017-05-29 14:04:40 +03:00
from collections import OrderedDict
from .lexeme cimport EMPTY_LEXEME
from .lexeme cimport Lexeme
from .strings cimport hash_string
2015-01-31 08:38:58 +03:00
from .typedefs cimport attr_t
from .cfile cimport CFile
from .tokens.token cimport Token
from .attrs cimport PROB, LANG
from .structs cimport SerializedLexemeC
2017-08-19 20:52:25 +03:00
from .compat import copy_reg, pickle, basestring_
from .lemmatizer import Lemmatizer
from .attrs import intify_attrs
2017-08-19 19:50:16 +03:00
from .vectors import Vectors
from . import util
from . import attrs
from . import symbols
2017-09-22 17:38:22 +03:00
from ._ml import link_vectors_to_models
2014-12-24 09:42:00 +03:00
cdef class Vocab:
"""A look-up table that allows you to access `Lexeme` objects. The `Vocab`
instance also provides access to the `StringStore`, and owns underlying
C-data that is shared between `Doc` objects.
"""
def __init__(self, lex_attr_getters=None, tag_map=None, lemmatizer=None,
2017-05-09 18:28:50 +03:00
strings=tuple(), **deprecated_kwargs):
"""Create the vocabulary.
lex_attr_getters (dict): A dictionary mapping attribute IDs to functions
to compute them. Defaults to `None`.
tag_map (dict): A dictionary mapping fine-grained tags to coarse-grained
parts-of-speech, and optionally morphological attributes.
lemmatizer (object): A lemmatizer. Defaults to `None`.
strings (StringStore): StringStore that maps strings to integers, and
vice versa.
RETURNS (Vocab): The newly constructed vocab object.
"""
lex_attr_getters = lex_attr_getters if lex_attr_getters is not None else {}
tag_map = tag_map if tag_map is not None else {}
if lemmatizer in (None, True, False):
lemmatizer = Lemmatizer({}, {}, {})
self.mem = Pool()
self._by_hash = PreshMap()
self._by_orth = PreshMap()
self.strings = StringStore()
2017-06-02 11:57:25 +03:00
self.length = 0
if strings:
for string in strings:
_ = self[string]
self.lex_attr_getters = lex_attr_getters
self.morphology = Morphology(self.strings, tag_map, lemmatizer)
self.vectors = Vectors(self.strings, width=0)
2016-12-21 20:04:41 +03:00
property lang:
def __get__(self):
langfunc = None
if self.lex_attr_getters:
langfunc = self.lex_attr_getters.get(LANG, None)
return langfunc('_') if langfunc else ''
def __len__(self):
"""The current number of lexemes stored.
RETURNS (int): The current number of lexemes stored.
"""
return self.length
def add_flag(self, flag_getter, int flag_id=-1):
"""Set a new boolean flag to words in the vocabulary.
2016-12-21 20:04:41 +03:00
The flag_getter function will be called over the words currently in the
2016-11-01 14:25:36 +03:00
vocab, and then applied to new words as they occur. You'll then be able
to access the flag value on each token, using token.check_flag(flag_id).
See also: `Lexeme.set_flag`, `Lexeme.check_flag`, `Token.set_flag`,
`Token.check_flag`.
flag_getter (callable): A function `f(unicode) -> bool`, to get the flag
value.
flag_id (int): An integer between 1 and 63 (inclusive), specifying
the bit at which the flag will be stored. If -1, the lowest
available bit will be chosen.
RETURNS (int): The integer ID by which the flag value can be checked.
EXAMPLE:
>>> MY_PRODUCT = nlp.vocab.add_flag(lambda text: text in ['spaCy', 'dislaCy'])
>>> doc = nlp(u'I like spaCy')
>>> assert doc[2].check_flag(MY_PRODUCT) == True
"""
if flag_id == -1:
for bit in range(1, 64):
if bit not in self.lex_attr_getters:
flag_id = bit
break
else:
raise ValueError(
"Cannot find empty bit for new lexical flag. All bits between "
"0 and 63 are occupied. You can replace one by specifying the "
"flag_id explicitly, e.g. nlp.vocab.add_flag(your_func, flag_id=IS_ALPHA")
elif flag_id >= 64 or flag_id < 1:
raise ValueError(
"Invalid value for flag_id: %d. Flag IDs must be between "
"1 and 63 (inclusive)" % flag_id)
for lex in self:
lex.set_flag(flag_id, flag_getter(lex.orth_))
self.lex_attr_getters[flag_id] = flag_getter
return flag_id
cdef const LexemeC* get(self, Pool mem, unicode string) except NULL:
"""Get a pointer to a `LexemeC` from the lexicon, creating a new `Lexeme`
if necessary, using memory acquired from the given pool. If the pool
is the lexicon's own memory, the lexeme is saved in the lexicon.
"""
2015-07-26 01:18:30 +03:00
if string == u'':
return &EMPTY_LEXEME
cdef LexemeC* lex
cdef hash_t key = hash_string(string)
lex = <LexemeC*>self._by_hash.get(key)
cdef size_t addr
if lex != NULL:
if lex.orth != self.strings[string]:
raise LookupError.mismatched_strings(
lex.orth, self.strings[string], string)
return lex
else:
2015-08-22 23:04:34 +03:00
return self._new_lexeme(mem, string)
cdef const LexemeC* get_by_orth(self, Pool mem, attr_t orth) except NULL:
"""Get a pointer to a `LexemeC` from the lexicon, creating a new `Lexeme`
if necessary, using memory acquired from the given pool. If the pool
is the lexicon's own memory, the lexeme is saved in the lexicon.
"""
2015-07-26 20:26:41 +03:00
if orth == 0:
2015-07-26 19:39:27 +03:00
return &EMPTY_LEXEME
cdef LexemeC* lex
lex = <LexemeC*>self._by_orth.get(orth)
if lex != NULL:
return lex
2015-08-22 23:04:34 +03:00
else:
return self._new_lexeme(mem, self.strings[orth])
2015-08-22 23:04:34 +03:00
cdef const LexemeC* _new_lexeme(self, Pool mem, unicode string) except NULL:
cdef hash_t key
if len(string) < 3 or self.length < 10000:
mem = self.mem
cdef bint is_oov = mem is not self.mem
lex = <LexemeC*>mem.alloc(sizeof(LexemeC), 1)
lex.orth = self.strings.add(string)
2015-08-26 20:21:46 +03:00
lex.length = len(string)
lex.id = self.length
if self.lex_attr_getters is not None:
for attr, func in self.lex_attr_getters.items():
value = func(string)
if isinstance(value, unicode):
value = self.strings.add(value)
2015-08-26 20:21:46 +03:00
if attr == PROB:
lex.prob = value
elif value is not None:
2015-08-26 20:21:46 +03:00
Lexeme.set_struct_attr(lex, attr, value)
if is_oov:
lex.id = 0
else:
key = hash_string(string)
2015-08-22 23:04:34 +03:00
self._add_lex_to_vocab(key, lex)
assert lex != NULL, string
return lex
cdef int _add_lex_to_vocab(self, hash_t key, const LexemeC* lex) except -1:
self._by_hash.set(key, <void*>lex)
self._by_orth.set(lex.orth, <void*>lex)
self.length += 1
def __contains__(self, unicode string):
"""Check whether the string has an entry in the vocabulary.
2016-11-01 14:25:36 +03:00
string (unicode): The ID string.
RETURNS (bool) Whether the string has an entry in the vocabulary.
"""
key = hash_string(string)
lex = self._by_hash.get(key)
2017-01-11 12:18:22 +03:00
return lex is not NULL
def __iter__(self):
"""Iterate over the lexemes in the vocabulary.
2016-11-01 14:25:36 +03:00
YIELDS (Lexeme): An entry in the vocabulary.
"""
cdef attr_t orth
cdef size_t addr
for orth, addr in self._by_orth.items():
yield Lexeme(self, orth)
def __getitem__(self, id_or_string):
"""Retrieve a lexeme, given an int ID or a unicode string. If a
previously unseen unicode string is given, a new lexeme is created and
stored.
id_or_string (int or unicode): The integer ID of a word, or its unicode
string. If `int >= Lexicon.size`, `IndexError` is raised. If
`id_or_string` is neither an int nor a unicode string, `ValueError`
is raised.
RETURNS (Lexeme): The lexeme indicated by the given ID.
EXAMPLE:
>>> apple = nlp.vocab.strings['apple']
>>> assert nlp.vocab[apple] == nlp.vocab[u'apple']
"""
cdef attr_t orth
if type(id_or_string) == unicode:
orth = self.strings.add(id_or_string)
else:
orth = id_or_string
return Lexeme(self, orth)
cdef const TokenC* make_fused_token(self, substrings) except NULL:
cdef int i
tokens = <TokenC*>self.mem.alloc(len(substrings) + 1, sizeof(TokenC))
for i, props in enumerate(substrings):
props = intify_attrs(props, strings_map=self.strings, _do_deprecated=True)
token = &tokens[i]
# Set the special tokens up to have arbitrary attributes
lex = <LexemeC*>self.get_by_orth(self.mem, props[attrs.ORTH])
token.lex = lex
if attrs.TAG in props:
self.morphology.assign_tag(token, props[attrs.TAG])
for attr_id, value in props.items():
Token.set_struct_attr(token, attr_id, value)
Lexeme.set_struct_attr(lex, attr_id, value)
return tokens
2016-12-21 20:04:41 +03:00
2017-05-31 00:34:50 +03:00
@property
def vectors_length(self):
2017-08-22 20:46:35 +03:00
return self.vectors.data.shape[1]
2017-05-31 00:34:50 +03:00
2017-08-19 21:35:33 +03:00
def clear_vectors(self, new_dim=None):
2017-05-31 00:34:50 +03:00
"""Drop the current vector table. Because all vectors must be the same
width, you have to call this to change the size of the vectors.
"""
2017-08-19 21:35:33 +03:00
if new_dim is None:
new_dim = self.vectors.data.shape[1]
2017-10-20 15:19:46 +03:00
self.vectors = Vectors(self.strings, width=new_dim)
2017-05-31 00:34:50 +03:00
2017-05-28 12:45:32 +03:00
def get_vector(self, orth):
"""Retrieve a vector for a word in the vocabulary.
Words can be looked up by string or int ID.
RETURNS:
2017-10-01 22:58:45 +03:00
A word vector. Size and shape determined by the
2017-05-28 12:45:32 +03:00
vocab.vectors instance. Usually, a numpy ndarray
of shape (300,) and dtype float32.
RAISES: If no vectors data is loaded, ValueError is raised.
"""
2017-08-19 20:52:25 +03:00
if isinstance(orth, basestring_):
orth = self.strings.add(orth)
2017-08-22 20:46:35 +03:00
if orth in self.vectors.key2row:
return self.vectors[orth]
else:
return numpy.zeros((self.vectors_length,), dtype='f')
2017-05-28 12:45:32 +03:00
2017-05-31 00:34:50 +03:00
def set_vector(self, orth, vector):
"""Set a vector for a word in the vocabulary.
Words can be referenced by string or int ID.
RETURNS:
None
"""
2017-08-19 20:52:25 +03:00
if not isinstance(orth, basestring_):
orth = self.strings[orth]
2017-08-19 21:35:33 +03:00
self.vectors.add(orth, vector=vector)
2017-05-31 00:34:50 +03:00
2017-05-28 12:45:32 +03:00
def has_vector(self, orth):
"""Check whether a word has a vector. Returns False if no
vectors have been loaded. Words can be looked up by string
or int ID."""
2017-08-19 20:52:25 +03:00
if isinstance(orth, basestring_):
orth = self.strings.add(orth)
return orth in self.vectors
2017-05-28 12:45:32 +03:00
2017-08-18 21:46:56 +03:00
def to_disk(self, path, **exclude):
"""Save the current state to a directory.
path (unicode or Path): A path to a directory, which will be created if
it doesn't exist. Paths may be either strings or `Path`-like objects.
"""
path = util.ensure_path(path)
if not path.exists():
path.mkdir()
2017-05-29 00:34:12 +03:00
self.strings.to_disk(path / 'strings.json')
with (path / 'lexemes.bin').open('wb') as file_:
file_.write(self.lexemes_to_bytes())
2017-08-18 21:46:56 +03:00
if self.vectors is not None:
2017-08-19 22:27:35 +03:00
self.vectors.to_disk(path)
2017-08-18 21:46:56 +03:00
def from_disk(self, path, **exclude):
"""Loads state from a directory. Modifies the object in place and
returns it.
path (unicode or Path): A path to a directory. Paths may be either
strings or `Path`-like objects.
RETURNS (Vocab): The modified `Vocab` object.
"""
path = util.ensure_path(path)
2017-05-29 00:34:12 +03:00
self.strings.from_disk(path / 'strings.json')
with (path / 'lexemes.bin').open('rb') as file_:
self.lexemes_from_bytes(file_.read())
2017-08-18 21:46:56 +03:00
if self.vectors is not None:
2017-08-19 22:27:35 +03:00
self.vectors.from_disk(path, exclude='strings.json')
link_vectors_to_models(self)
2017-05-29 00:34:12 +03:00
return self
2016-11-01 14:25:36 +03:00
def to_bytes(self, **exclude):
"""Serialize the current state to a binary string.
**exclude: Named attributes to prevent from being serialized.
RETURNS (bytes): The serialized form of the `Vocab` object.
"""
2017-08-18 21:46:56 +03:00
def deserialize_vectors():
if self.vectors is None:
return None
else:
return self.vectors.to_bytes()
2017-05-30 01:52:36 +03:00
getters = OrderedDict((
('strings', lambda: self.strings.to_bytes()),
('lexemes', lambda: self.lexemes_to_bytes()),
2017-08-18 21:46:56 +03:00
('vectors', deserialize_vectors)
2017-05-30 01:52:36 +03:00
))
2017-05-29 11:14:20 +03:00
return util.to_bytes(getters, exclude)
2017-05-21 15:18:46 +03:00
def from_bytes(self, bytes_data, **exclude):
"""Load state from a binary string.
bytes_data (bytes): The data to load from.
**exclude: Named attributes to prevent from being loaded.
RETURNS (Vocab): The `Vocab` object.
"""
2017-08-18 21:46:56 +03:00
def serialize_vectors(b):
if self.vectors is None:
return None
else:
return self.vectors.from_bytes(b)
2017-05-29 14:04:40 +03:00
setters = OrderedDict((
('strings', lambda b: self.strings.from_bytes(b)),
2017-05-30 01:52:36 +03:00
('lexemes', lambda b: self.lexemes_from_bytes(b)),
2017-08-18 21:46:56 +03:00
('vectors', lambda b: serialize_vectors(b))
2017-05-29 14:04:40 +03:00
))
2017-06-02 11:56:40 +03:00
util.from_bytes(bytes_data, setters, exclude)
return self
2017-05-29 00:34:12 +03:00
def lexemes_to_bytes(self):
cdef hash_t key
cdef size_t addr
2017-03-11 21:43:09 +03:00
cdef LexemeC* lexeme = NULL
cdef SerializedLexemeC lex_data
cdef int size = 0
2015-07-27 11:58:15 +03:00
for key, addr in self._by_hash.items():
if addr == 0:
continue
size += sizeof(lex_data.data)
byte_string = b'\0' * size
byte_ptr = <unsigned char*>byte_string
cdef int j
cdef int i = 0
for key, addr in self._by_hash.items():
if addr == 0:
continue
lexeme = <LexemeC*>addr
lex_data = Lexeme.c_to_bytes(lexeme)
for j in range(sizeof(lex_data.data)):
byte_ptr[i] = lex_data.data[j]
i += 1
return byte_string
2016-11-01 14:25:36 +03:00
def lexemes_from_bytes(self, bytes bytes_data):
"""Load the binary vocabulary data from the given string."""
cdef LexemeC* lexeme
2017-03-07 22:25:12 +03:00
cdef hash_t key
cdef unicode py_str
cdef int i = 0
cdef int j = 0
cdef SerializedLexemeC lex_data
chunk_size = sizeof(lex_data.data)
cdef void* ptr
cdef unsigned char* bytes_ptr = bytes_data
for i in range(0, len(bytes_data), chunk_size):
lexeme = <LexemeC*>self.mem.alloc(1, sizeof(LexemeC))
for j in range(sizeof(lex_data.data)):
lex_data.data[j] = bytes_ptr[i+j]
Lexeme.c_from_bytes(lexeme, lex_data)
2017-03-07 22:25:12 +03:00
ptr = self.strings._map.get(lexeme.orth)
if ptr == NULL:
continue
2017-03-07 22:25:12 +03:00
py_str = self.strings[lexeme.orth]
assert self.strings[py_str] == lexeme.orth, (py_str, lexeme.orth)
2017-03-07 22:25:12 +03:00
key = hash_string(py_str)
self._by_hash.set(key, lexeme)
self._by_orth.set(lexeme.orth, lexeme)
self.length += 1
2017-03-07 22:25:12 +03:00
def pickle_vocab(vocab):
sstore = vocab.strings
morph = vocab.morphology
length = vocab.length
data_dir = vocab.data_dir
lex_attr_getters = dill.dumps(vocab.lex_attr_getters)
2017-03-07 22:25:12 +03:00
lexemes_data = vocab.lexemes_to_bytes()
2017-03-07 22:25:12 +03:00
return (unpickle_vocab,
2017-05-09 18:28:50 +03:00
(sstore, morph, data_dir, lex_attr_getters,
2017-05-31 16:25:01 +03:00
lexemes_data, length))
2017-03-07 22:25:12 +03:00
2017-05-09 18:28:50 +03:00
def unpickle_vocab(sstore, morphology, data_dir,
2017-05-31 16:25:01 +03:00
lex_attr_getters, bytes lexemes_data, int length):
2017-03-07 22:25:12 +03:00
cdef Vocab vocab = Vocab()
vocab.length = length
vocab.strings = sstore
vocab.morphology = morphology
vocab.data_dir = data_dir
vocab.lex_attr_getters = dill.loads(lex_attr_getters)
vocab.lexemes_from_bytes(lexemes_data)
2017-03-07 22:25:12 +03:00
vocab.length = length
2017-09-22 17:38:22 +03:00
link_vectors_to_models(vocab)
2017-03-07 22:25:12 +03:00
return vocab
copy_reg.pickle(Vocab, pickle_vocab, unpickle_vocab)
class LookupError(Exception):
@classmethod
def mismatched_strings(cls, id_, id_string, original_string):
return cls(
"Error fetching a Lexeme from the Vocab. When looking up a string, "
"the lexeme returned had an orth ID that did not match the query string. "
"This means that the cached lexeme structs are mismatched to the "
"string encoding table. The mismatched:\n"
"Query string: {query}\n"
"Orth cached: {orth_str}\n"
"ID of orth: {orth_id}".format(
2015-11-05 16:48:08 +03:00
query=repr(original_string), orth_str=repr(id_string), orth_id=id_)
)