2017-04-15 13:05:47 +03:00
|
|
|
# coding: utf8
|
2017-11-15 15:58:03 +03:00
|
|
|
# cython: profile=True
|
2015-07-23 14:24:20 +03:00
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
2017-08-22 20:46:35 +03:00
|
|
|
import numpy
|
2017-10-17 19:17:45 +03:00
|
|
|
import dill
|
2014-12-19 22:54:03 +03:00
|
|
|
|
2017-05-29 14:04:40 +03:00
|
|
|
from collections import OrderedDict
|
2017-10-30 19:59:43 +03:00
|
|
|
from thinc.neural.util import get_array_module
|
2014-12-19 22:54:03 +03:00
|
|
|
from .lexeme cimport EMPTY_LEXEME
|
2015-01-17 08:21:17 +03:00
|
|
|
from .lexeme cimport Lexeme
|
2015-01-12 02:26:22 +03:00
|
|
|
from .strings cimport hash_string
|
2015-01-31 08:38:58 +03:00
|
|
|
from .typedefs cimport attr_t
|
2016-11-25 14:43:24 +03:00
|
|
|
from .tokens.token cimport Token
|
2017-10-27 20:45:19 +03:00
|
|
|
from .attrs cimport PROB, LANG, ORTH, TAG
|
2017-05-17 13:04:50 +03:00
|
|
|
from .structs cimport SerializedLexemeC
|
2016-09-24 16:42:01 +03:00
|
|
|
|
2017-10-27 20:45:19 +03:00
|
|
|
from .compat import copy_reg, basestring_
|
2018-04-03 16:50:31 +03:00
|
|
|
from .errors import Errors
|
2017-04-15 13:05:47 +03:00
|
|
|
from .lemmatizer import Lemmatizer
|
|
|
|
from .attrs import intify_attrs
|
2017-08-19 19:50:16 +03:00
|
|
|
from .vectors import Vectors
|
2017-09-22 17:38:22 +03:00
|
|
|
from ._ml import link_vectors_to_models
|
2017-10-27 22:07:59 +03:00
|
|
|
from . import util
|
2015-10-13 12:04:40 +03:00
|
|
|
|
2014-12-24 09:42:00 +03:00
|
|
|
|
2014-12-19 22:54:03 +03:00
|
|
|
cdef class Vocab:
|
2017-05-20 14:59:31 +03:00
|
|
|
"""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.
|
2017-04-15 12:59:21 +03:00
|
|
|
"""
|
2016-09-25 15:49:53 +03:00
|
|
|
def __init__(self, lex_attr_getters=None, tag_map=None, lemmatizer=None,
|
2017-10-30 18:08:50 +03:00
|
|
|
strings=tuple(), oov_prob=-20., **deprecated_kwargs):
|
2017-05-20 14:59:31 +03:00
|
|
|
"""Create the vocabulary.
|
|
|
|
|
2017-10-27 20:45:19 +03:00
|
|
|
lex_attr_getters (dict): A dictionary mapping attribute IDs to
|
|
|
|
functions to compute them. Defaults to `None`.
|
|
|
|
tag_map (dict): Dictionary mapping fine-grained tags to coarse-grained
|
2017-05-20 14:59:31 +03:00
|
|
|
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.
|
2017-10-27 20:45:19 +03:00
|
|
|
RETURNS (Vocab): The newly constructed object.
|
2017-04-15 12:59:21 +03:00
|
|
|
"""
|
2016-09-25 15:49:53 +03:00
|
|
|
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):
|
2015-09-10 15:49:10 +03:00
|
|
|
lemmatizer = Lemmatizer({}, {}, {})
|
2017-10-30 18:08:50 +03:00
|
|
|
self.cfg = {'oov_prob': oov_prob}
|
2015-09-10 15:49:10 +03:00
|
|
|
self.mem = Pool()
|
|
|
|
self._by_orth = PreshMap()
|
|
|
|
self.strings = StringStore()
|
2017-06-02 11:57:25 +03:00
|
|
|
self.length = 0
|
2017-03-17 20:29:04 +03:00
|
|
|
if strings:
|
|
|
|
for string in strings:
|
2017-06-02 11:57:06 +03:00
|
|
|
_ = self[string]
|
2016-09-25 15:49:53 +03:00
|
|
|
self.lex_attr_getters = lex_attr_getters
|
2015-09-10 15:49:10 +03:00
|
|
|
self.morphology = Morphology(self.strings, tag_map, lemmatizer)
|
2017-10-31 20:25:08 +03:00
|
|
|
self.vectors = Vectors()
|
2016-12-21 20:04:41 +03:00
|
|
|
|
2016-03-16 17:53:35 +03:00
|
|
|
property lang:
|
|
|
|
def __get__(self):
|
|
|
|
langfunc = None
|
2016-09-25 15:49:53 +03:00
|
|
|
if self.lex_attr_getters:
|
|
|
|
langfunc = self.lex_attr_getters.get(LANG, None)
|
2016-03-16 17:53:35 +03:00
|
|
|
return langfunc('_') if langfunc else ''
|
|
|
|
|
2014-12-19 22:54:03 +03:00
|
|
|
def __len__(self):
|
2017-05-20 14:59:31 +03:00
|
|
|
"""The current number of lexemes stored.
|
|
|
|
|
|
|
|
RETURNS (int): The current number of lexemes stored.
|
2017-04-15 12:59:21 +03:00
|
|
|
"""
|
2015-07-18 23:42:15 +03:00
|
|
|
return self.length
|
2017-05-20 14:59:31 +03:00
|
|
|
|
2016-10-14 13:15:38 +03:00
|
|
|
def add_flag(self, flag_getter, int flag_id=-1):
|
2017-05-20 14:59:31 +03:00
|
|
|
"""Set a new boolean flag to words in the vocabulary.
|
2016-12-21 20:04:41 +03:00
|
|
|
|
2017-05-20 14:59:31 +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
|
2017-10-27 20:45:19 +03:00
|
|
|
to access the flag value on each token using token.check_flag(flag_id).
|
2017-05-20 14:59:31 +03:00
|
|
|
See also: `Lexeme.set_flag`, `Lexeme.check_flag`, `Token.set_flag`,
|
|
|
|
`Token.check_flag`.
|
|
|
|
|
2017-10-27 20:45:19 +03:00
|
|
|
flag_getter (callable): A function `f(unicode) -> bool`, to get the
|
|
|
|
flag value.
|
2017-05-20 14:59:31 +03:00
|
|
|
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:
|
2017-10-27 20:45:19 +03:00
|
|
|
>>> my_product_getter = lambda text: text in ['spaCy', 'dislaCy']
|
|
|
|
>>> MY_PRODUCT = nlp.vocab.add_flag(my_product_getter)
|
2017-05-20 14:59:31 +03:00
|
|
|
>>> doc = nlp(u'I like spaCy')
|
|
|
|
>>> assert doc[2].check_flag(MY_PRODUCT) == True
|
2017-04-15 12:59:21 +03:00
|
|
|
"""
|
2016-10-14 13:15:38 +03:00
|
|
|
if flag_id == -1:
|
|
|
|
for bit in range(1, 64):
|
|
|
|
if bit not in self.lex_attr_getters:
|
|
|
|
flag_id = bit
|
|
|
|
break
|
|
|
|
else:
|
2018-04-03 16:50:31 +03:00
|
|
|
raise ValueError(Errors.E062)
|
2016-10-14 13:15:38 +03:00
|
|
|
elif flag_id >= 64 or flag_id < 1:
|
2018-04-03 16:50:31 +03:00
|
|
|
raise ValueError(Errors.E063.format(value=flag_id))
|
2016-10-14 13:15:38 +03:00
|
|
|
for lex in self:
|
|
|
|
lex.set_flag(flag_id, flag_getter(lex.orth_))
|
|
|
|
self.lex_attr_getters[flag_id] = flag_getter
|
|
|
|
return flag_id
|
|
|
|
|
2015-07-22 05:49:39 +03:00
|
|
|
cdef const LexemeC* get(self, Pool mem, unicode string) except NULL:
|
2017-10-27 20:45:19 +03:00
|
|
|
"""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.
|
2017-04-15 12:59:21 +03:00
|
|
|
"""
|
2015-07-26 01:18:30 +03:00
|
|
|
if string == u'':
|
|
|
|
return &EMPTY_LEXEME
|
2015-01-12 02:26:22 +03:00
|
|
|
cdef LexemeC* lex
|
2015-07-22 05:49:39 +03:00
|
|
|
cdef hash_t key = hash_string(string)
|
💫 Small efficiency fixes to tokenizer (#2587)
This patch improves tokenizer speed by about 10%, and reduces memory usage in the `Vocab` by removing a redundant index. The `vocab._by_orth` and `vocab._by_hash` indexed on different data in v1, but in v2 the orth and the hash are identical.
The patch also fixes an uninitialized variable in the tokenizer, the `has_special` flag. This checks whether a chunk we're tokenizing triggers a special-case rule. If it does, then we avoid caching within the chunk. This check led to incorrectly rejecting some chunks from the cache.
With the `en_core_web_md` model, we now tokenize the IMDB train data at 503,104k words per second. Prior to this patch, we had 465,764k words per second.
Before switching to the regex library and supporting more languages, we had 1.3m words per second for the tokenizer. In order to recover the missing speed, we need to:
* Fix the variable-length lookarounds in the suffix, infix and `token_match` rules
* Improve the performance of the `token_match` regex
* Switch back from the `regex` library to the `re` library.
## Checklist
<!--- Before you submit the PR, go over this checklist and make sure you can
tick off all the boxes. [] -> [x] -->
- [x] I have submitted the spaCy Contributor Agreement.
- [x] I ran the tests, and all new and existing tests passed.
- [x] My changes don't require a change to the documentation, or if they do, I've added all required information.
2018-07-25 00:35:54 +03:00
|
|
|
lex = <LexemeC*>self._by_orth.get(key)
|
2015-08-23 21:49:18 +03:00
|
|
|
cdef size_t addr
|
2014-12-19 22:54:03 +03:00
|
|
|
if lex != NULL:
|
💫 Small efficiency fixes to tokenizer (#2587)
This patch improves tokenizer speed by about 10%, and reduces memory usage in the `Vocab` by removing a redundant index. The `vocab._by_orth` and `vocab._by_hash` indexed on different data in v1, but in v2 the orth and the hash are identical.
The patch also fixes an uninitialized variable in the tokenizer, the `has_special` flag. This checks whether a chunk we're tokenizing triggers a special-case rule. If it does, then we avoid caching within the chunk. This check led to incorrectly rejecting some chunks from the cache.
With the `en_core_web_md` model, we now tokenize the IMDB train data at 503,104k words per second. Prior to this patch, we had 465,764k words per second.
Before switching to the regex library and supporting more languages, we had 1.3m words per second for the tokenizer. In order to recover the missing speed, we need to:
* Fix the variable-length lookarounds in the suffix, infix and `token_match` rules
* Improve the performance of the `token_match` regex
* Switch back from the `regex` library to the `re` library.
## Checklist
<!--- Before you submit the PR, go over this checklist and make sure you can
tick off all the boxes. [] -> [x] -->
- [x] I have submitted the spaCy Contributor Agreement.
- [x] I ran the tests, and all new and existing tests passed.
- [x] My changes don't require a change to the documentation, or if they do, I've added all required information.
2018-07-25 00:35:54 +03:00
|
|
|
if lex.orth != key:
|
2018-04-03 16:50:31 +03:00
|
|
|
raise KeyError(Errors.E064.format(string=lex.orth,
|
💫 Small efficiency fixes to tokenizer (#2587)
This patch improves tokenizer speed by about 10%, and reduces memory usage in the `Vocab` by removing a redundant index. The `vocab._by_orth` and `vocab._by_hash` indexed on different data in v1, but in v2 the orth and the hash are identical.
The patch also fixes an uninitialized variable in the tokenizer, the `has_special` flag. This checks whether a chunk we're tokenizing triggers a special-case rule. If it does, then we avoid caching within the chunk. This check led to incorrectly rejecting some chunks from the cache.
With the `en_core_web_md` model, we now tokenize the IMDB train data at 503,104k words per second. Prior to this patch, we had 465,764k words per second.
Before switching to the regex library and supporting more languages, we had 1.3m words per second for the tokenizer. In order to recover the missing speed, we need to:
* Fix the variable-length lookarounds in the suffix, infix and `token_match` rules
* Improve the performance of the `token_match` regex
* Switch back from the `regex` library to the `re` library.
## Checklist
<!--- Before you submit the PR, go over this checklist and make sure you can
tick off all the boxes. [] -> [x] -->
- [x] I have submitted the spaCy Contributor Agreement.
- [x] I ran the tests, and all new and existing tests passed.
- [x] My changes don't require a change to the documentation, or if they do, I've added all required information.
2018-07-25 00:35:54 +03:00
|
|
|
orth=key, orth_id=string))
|
2014-12-19 22:54:03 +03:00
|
|
|
return lex
|
2015-07-20 02:37:34 +03:00
|
|
|
else:
|
2015-08-22 23:04:34 +03:00
|
|
|
return self._new_lexeme(mem, string)
|
2014-12-19 22:54:03 +03:00
|
|
|
|
2015-07-23 02:18:19 +03:00
|
|
|
cdef const LexemeC* get_by_orth(self, Pool mem, attr_t orth) except NULL:
|
2017-10-27 20:45:19 +03:00
|
|
|
"""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.
|
2017-04-15 12:59:21 +03:00
|
|
|
"""
|
2015-07-26 20:26:41 +03:00
|
|
|
if orth == 0:
|
2015-07-26 19:39:27 +03:00
|
|
|
return &EMPTY_LEXEME
|
2015-07-23 02:18:19 +03:00
|
|
|
cdef LexemeC* lex
|
|
|
|
lex = <LexemeC*>self._by_orth.get(orth)
|
|
|
|
if lex != NULL:
|
|
|
|
return lex
|
2015-08-22 23:04:34 +03:00
|
|
|
else:
|
2016-09-30 21:10:30 +03:00
|
|
|
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:
|
2015-08-23 21:49:18 +03:00
|
|
|
cdef hash_t key
|
2016-12-27 23:03:45 +03:00
|
|
|
if len(string) < 3 or self.length < 10000:
|
2016-09-30 21:10:30 +03:00
|
|
|
mem = self.mem
|
2016-12-27 23:03:45 +03:00
|
|
|
cdef bint is_oov = mem is not self.mem
|
2016-09-30 21:10:30 +03:00
|
|
|
lex = <LexemeC*>mem.alloc(sizeof(LexemeC), 1)
|
2017-05-28 16:10:22 +03:00
|
|
|
lex.orth = self.strings.add(string)
|
2015-08-26 20:21:46 +03:00
|
|
|
lex.length = len(string)
|
2017-11-15 16:23:58 +03:00
|
|
|
if self.vectors is not None:
|
|
|
|
lex.id = self.vectors.key2row.get(lex.orth, 0)
|
|
|
|
else:
|
|
|
|
lex.id = 0
|
2016-09-25 15:49:53 +03:00
|
|
|
if self.lex_attr_getters is not None:
|
|
|
|
for attr, func in self.lex_attr_getters.items():
|
2015-08-23 21:49:18 +03:00
|
|
|
value = func(string)
|
|
|
|
if isinstance(value, unicode):
|
2017-05-28 13:36:27 +03:00
|
|
|
value = self.strings.add(value)
|
2015-08-26 20:21:46 +03:00
|
|
|
if attr == PROB:
|
|
|
|
lex.prob = value
|
2016-10-09 13:24:24 +03:00
|
|
|
elif value is not None:
|
2015-08-26 20:21:46 +03:00
|
|
|
Lexeme.set_struct_attr(lex, attr, value)
|
2017-11-15 15:58:03 +03:00
|
|
|
if not is_oov:
|
💫 Small efficiency fixes to tokenizer (#2587)
This patch improves tokenizer speed by about 10%, and reduces memory usage in the `Vocab` by removing a redundant index. The `vocab._by_orth` and `vocab._by_hash` indexed on different data in v1, but in v2 the orth and the hash are identical.
The patch also fixes an uninitialized variable in the tokenizer, the `has_special` flag. This checks whether a chunk we're tokenizing triggers a special-case rule. If it does, then we avoid caching within the chunk. This check led to incorrectly rejecting some chunks from the cache.
With the `en_core_web_md` model, we now tokenize the IMDB train data at 503,104k words per second. Prior to this patch, we had 465,764k words per second.
Before switching to the regex library and supporting more languages, we had 1.3m words per second for the tokenizer. In order to recover the missing speed, we need to:
* Fix the variable-length lookarounds in the suffix, infix and `token_match` rules
* Improve the performance of the `token_match` regex
* Switch back from the `regex` library to the `re` library.
## Checklist
<!--- Before you submit the PR, go over this checklist and make sure you can
tick off all the boxes. [] -> [x] -->
- [x] I have submitted the spaCy Contributor Agreement.
- [x] I ran the tests, and all new and existing tests passed.
- [x] My changes don't require a change to the documentation, or if they do, I've added all required information.
2018-07-25 00:35:54 +03:00
|
|
|
self._add_lex_to_vocab(lex.orth, lex)
|
2018-04-03 16:50:31 +03:00
|
|
|
if lex == NULL:
|
|
|
|
raise ValueError(Errors.E085.format(string=string))
|
2015-07-23 02:18:19 +03:00
|
|
|
return lex
|
|
|
|
|
2015-01-13 16:03:48 +03:00
|
|
|
cdef int _add_lex_to_vocab(self, hash_t key, const LexemeC* lex) except -1:
|
2015-07-18 23:42:15 +03:00
|
|
|
self._by_orth.set(lex.orth, <void*>lex)
|
|
|
|
self.length += 1
|
|
|
|
|
2018-01-24 01:26:47 +03:00
|
|
|
def __contains__(self, key):
|
|
|
|
"""Check whether the string or int key has an entry in the vocabulary.
|
2016-11-01 14:25:36 +03:00
|
|
|
|
2017-05-20 14:59:31 +03:00
|
|
|
string (unicode): The ID string.
|
|
|
|
RETURNS (bool) Whether the string has an entry in the vocabulary.
|
2017-04-15 12:59:21 +03:00
|
|
|
"""
|
2018-01-24 01:26:47 +03:00
|
|
|
cdef hash_t int_key
|
|
|
|
if isinstance(key, bytes):
|
|
|
|
int_key = hash_string(key.decode('utf8'))
|
|
|
|
elif isinstance(key, unicode):
|
|
|
|
int_key = hash_string(key)
|
|
|
|
else:
|
|
|
|
int_key = key
|
💫 Small efficiency fixes to tokenizer (#2587)
This patch improves tokenizer speed by about 10%, and reduces memory usage in the `Vocab` by removing a redundant index. The `vocab._by_orth` and `vocab._by_hash` indexed on different data in v1, but in v2 the orth and the hash are identical.
The patch also fixes an uninitialized variable in the tokenizer, the `has_special` flag. This checks whether a chunk we're tokenizing triggers a special-case rule. If it does, then we avoid caching within the chunk. This check led to incorrectly rejecting some chunks from the cache.
With the `en_core_web_md` model, we now tokenize the IMDB train data at 503,104k words per second. Prior to this patch, we had 465,764k words per second.
Before switching to the regex library and supporting more languages, we had 1.3m words per second for the tokenizer. In order to recover the missing speed, we need to:
* Fix the variable-length lookarounds in the suffix, infix and `token_match` rules
* Improve the performance of the `token_match` regex
* Switch back from the `regex` library to the `re` library.
## Checklist
<!--- Before you submit the PR, go over this checklist and make sure you can
tick off all the boxes. [] -> [x] -->
- [x] I have submitted the spaCy Contributor Agreement.
- [x] I ran the tests, and all new and existing tests passed.
- [x] My changes don't require a change to the documentation, or if they do, I've added all required information.
2018-07-25 00:35:54 +03:00
|
|
|
lex = self._by_orth.get(int_key)
|
2017-01-11 12:18:22 +03:00
|
|
|
return lex is not NULL
|
2016-03-08 18:49:10 +03:00
|
|
|
|
2015-07-18 23:42:15 +03:00
|
|
|
def __iter__(self):
|
2017-05-20 14:59:31 +03:00
|
|
|
"""Iterate over the lexemes in the vocabulary.
|
2016-11-01 14:25:36 +03:00
|
|
|
|
2017-05-20 14:59:31 +03:00
|
|
|
YIELDS (Lexeme): An entry in the vocabulary.
|
2017-04-15 12:59:21 +03:00
|
|
|
"""
|
2017-10-31 04:00:26 +03:00
|
|
|
cdef attr_t key
|
2015-07-18 23:42:15 +03:00
|
|
|
cdef size_t addr
|
2017-10-31 04:00:26 +03:00
|
|
|
for key, addr in self._by_orth.items():
|
|
|
|
lex = Lexeme(self, key)
|
|
|
|
yield lex
|
2015-01-13 16:03:48 +03:00
|
|
|
|
2017-10-27 20:45:19 +03:00
|
|
|
def __getitem__(self, id_or_string):
|
|
|
|
"""Retrieve a lexeme, given an int ID or a unicode string. If a
|
2017-05-20 14:59:31 +03:00
|
|
|
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']
|
2017-04-15 12:59:21 +03:00
|
|
|
"""
|
2015-07-18 23:42:15 +03:00
|
|
|
cdef attr_t orth
|
2017-10-31 04:00:26 +03:00
|
|
|
if isinstance(id_or_string, unicode):
|
2017-05-28 13:36:27 +03:00
|
|
|
orth = self.strings.add(id_or_string)
|
2015-01-14 16:33:16 +03:00
|
|
|
else:
|
2015-08-23 21:49:18 +03:00
|
|
|
orth = id_or_string
|
|
|
|
return Lexeme(self, orth)
|
2014-12-19 22:54:03 +03:00
|
|
|
|
2015-08-28 03:02:33 +03:00
|
|
|
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):
|
2017-10-27 20:45:19 +03:00
|
|
|
props = intify_attrs(props, strings_map=self.strings,
|
|
|
|
_do_deprecated=True)
|
2015-08-28 03:02:33 +03:00
|
|
|
token = &tokens[i]
|
2016-11-25 14:43:24 +03:00
|
|
|
# Set the special tokens up to have arbitrary attributes
|
2017-10-27 20:45:19 +03:00
|
|
|
lex = <LexemeC*>self.get_by_orth(self.mem, props[ORTH])
|
2017-06-03 20:44:39 +03:00
|
|
|
token.lex = lex
|
2017-10-27 20:45:19 +03:00
|
|
|
if TAG in props:
|
|
|
|
self.morphology.assign_tag(token, props[TAG])
|
2016-11-25 14:43:24 +03:00
|
|
|
for attr_id, value in props.items():
|
|
|
|
Token.set_struct_attr(token, attr_id, value)
|
2017-06-03 20:44:39 +03:00
|
|
|
Lexeme.set_struct_attr(lex, attr_id, value)
|
2015-08-28 03:02:33 +03:00
|
|
|
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-10-31 20:25:08 +03:00
|
|
|
def reset_vectors(self, *, width=None, shape=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-10-31 20:25:08 +03:00
|
|
|
if width is not None and shape is not None:
|
2018-04-03 16:50:31 +03:00
|
|
|
raise ValueError(Errors.E065.format(width=width, shape=shape))
|
2017-10-31 20:25:08 +03:00
|
|
|
elif shape is not None:
|
|
|
|
self.vectors = Vectors(shape=shape)
|
|
|
|
else:
|
|
|
|
width = width if width is not None else self.vectors.data.shape[1]
|
|
|
|
self.vectors = Vectors(shape=(self.vectors.shape[0], width))
|
2017-10-31 04:00:26 +03:00
|
|
|
|
2017-10-31 20:25:08 +03:00
|
|
|
def prune_vectors(self, nr_row, batch_size=1024):
|
2017-10-31 04:00:26 +03:00
|
|
|
"""Reduce the current vector table to `nr_row` unique entries. Words
|
|
|
|
mapped to the discarded vectors will be remapped to the closest vector
|
|
|
|
among those remaining.
|
|
|
|
|
|
|
|
For example, suppose the original table had vectors for the words:
|
|
|
|
['sat', 'cat', 'feline', 'reclined']. If we prune the vector table to,
|
|
|
|
two rows, we would discard the vectors for 'feline' and 'reclined'.
|
|
|
|
These words would then be remapped to the closest remaining vector
|
|
|
|
-- so "feline" would have the same vector as "cat", and "reclined"
|
|
|
|
would have the same vector as "sat".
|
|
|
|
|
|
|
|
The similarities are judged by cosine. The original vectors may
|
|
|
|
be large, so the cosines are calculated in minibatches, to reduce
|
|
|
|
memory usage.
|
|
|
|
|
|
|
|
nr_row (int): The number of rows to keep in the vector table.
|
|
|
|
batch_size (int): Batch of vectors for calculating the similarities.
|
|
|
|
Larger batch sizes might be faster, while temporarily requiring
|
|
|
|
more memory.
|
|
|
|
RETURNS (dict): A dictionary keyed by removed words mapped to
|
|
|
|
`(string, score)` tuples, where `string` is the entry the removed
|
|
|
|
word was mapped to, and `score` the similarity score between the
|
|
|
|
two words.
|
|
|
|
"""
|
|
|
|
xp = get_array_module(self.vectors.data)
|
2017-10-31 20:25:08 +03:00
|
|
|
# Make prob negative so it sorts by rank ascending
|
|
|
|
# (key2row contains the rank)
|
|
|
|
priority = [(-lex.prob, self.vectors.key2row[lex.orth], lex.orth)
|
|
|
|
for lex in self if lex.orth in self.vectors.key2row]
|
|
|
|
priority.sort()
|
|
|
|
indices = xp.asarray([i for (prob, i, key) in priority], dtype='i')
|
|
|
|
keys = xp.asarray([key for (prob, i, key) in priority], dtype='uint64')
|
2017-11-01 02:34:55 +03:00
|
|
|
|
2017-10-31 20:25:08 +03:00
|
|
|
keep = xp.ascontiguousarray(self.vectors.data[indices[:nr_row]])
|
|
|
|
toss = xp.ascontiguousarray(self.vectors.data[indices[nr_row:]])
|
|
|
|
|
|
|
|
self.vectors = Vectors(data=keep, keys=keys)
|
|
|
|
|
2017-11-01 02:34:55 +03:00
|
|
|
syn_keys, syn_rows, scores = self.vectors.most_similar(toss)
|
2017-10-31 20:25:08 +03:00
|
|
|
|
2017-10-31 13:40:46 +03:00
|
|
|
remap = {}
|
2017-10-31 20:25:08 +03:00
|
|
|
for i, key in enumerate(keys[nr_row:]):
|
|
|
|
self.vectors.add(key, row=syn_rows[i])
|
|
|
|
word = self.strings[key]
|
|
|
|
synonym = self.strings[syn_keys[i]]
|
|
|
|
score = scores[i]
|
|
|
|
remap[word] = (synonym, score)
|
2017-10-31 04:00:26 +03:00
|
|
|
link_vectors_to_models(self)
|
|
|
|
return remap
|
2017-05-31 00:34:50 +03:00
|
|
|
|
2018-04-20 23:04:14 +03:00
|
|
|
def get_vector(self, orth, minn=None, maxn=None):
|
2017-10-27 20:45:19 +03:00
|
|
|
"""Retrieve a vector for a word in the vocabulary. Words can be looked
|
|
|
|
up by string or int ID. If no vectors data is loaded, ValueError is
|
|
|
|
raised.
|
2017-05-28 12:45:32 +03:00
|
|
|
|
2017-10-27 20:45:19 +03:00
|
|
|
RETURNS (numpy.ndarray): A word vector. Size
|
|
|
|
and shape determined by the `vocab.vectors` instance. Usually, a
|
|
|
|
numpy ndarray of shape (300,) and dtype float32.
|
2017-05-28 12:45:32 +03:00
|
|
|
"""
|
2017-08-19 20:52:25 +03:00
|
|
|
if isinstance(orth, basestring_):
|
|
|
|
orth = self.strings.add(orth)
|
2018-04-20 23:04:14 +03:00
|
|
|
word = self[orth].orth_
|
2017-08-22 20:46:35 +03:00
|
|
|
if orth in self.vectors.key2row:
|
|
|
|
return self.vectors[orth]
|
2018-04-20 23:04:14 +03:00
|
|
|
|
|
|
|
# Assign default ngram limits to minn and maxn which is the length of the word.
|
|
|
|
if minn is None:
|
|
|
|
minn = len(word)
|
|
|
|
if maxn is None:
|
|
|
|
maxn = len(word)
|
|
|
|
vectors = numpy.zeros((self.vectors_length,), dtype='f')
|
|
|
|
|
|
|
|
# Fasttext's ngram computation taken from https://github.com/facebookresearch/fastText
|
|
|
|
ngrams_size = 0;
|
|
|
|
for i in range(len(word)):
|
|
|
|
ngram = ""
|
|
|
|
if (word[i] and 0xC0) == 0x80:
|
|
|
|
continue
|
|
|
|
n = 1
|
|
|
|
j = i
|
|
|
|
while (j < len(word) and n <= maxn):
|
|
|
|
if n > maxn:
|
|
|
|
break
|
|
|
|
ngram += word[j]
|
|
|
|
j = j + 1
|
|
|
|
while (j < len(word) and (word[j] and 0xC0) == 0x80):
|
|
|
|
ngram += word[j]
|
|
|
|
j = j + 1
|
|
|
|
if (n >= minn and not (n == 1 and (i == 0 or j == len(word)))):
|
|
|
|
if self.strings[ngram] in self.vectors.key2row:
|
|
|
|
vectors = numpy.add(self.vectors[self.strings[ngram]],vectors)
|
|
|
|
ngrams_size += 1
|
|
|
|
n = n + 1
|
|
|
|
if ngrams_size > 0:
|
|
|
|
vectors = vectors * (1.0/ngrams_size)
|
|
|
|
|
|
|
|
return vectors
|
2017-05-28 12:45:32 +03:00
|
|
|
|
2017-05-31 00:34:50 +03:00
|
|
|
def set_vector(self, orth, vector):
|
2017-10-27 20:45:19 +03:00
|
|
|
"""Set a vector for a word in the vocabulary. Words can be referenced
|
|
|
|
by string or int ID.
|
2017-05-31 00:34:50 +03:00
|
|
|
"""
|
2017-10-31 20:25:08 +03:00
|
|
|
if isinstance(orth, basestring_):
|
|
|
|
orth = self.strings.add(orth)
|
|
|
|
if self.vectors.is_full and orth not in self.vectors:
|
|
|
|
new_rows = max(100, int(self.vectors.shape[0]*1.3))
|
|
|
|
if self.vectors.shape[1] == 0:
|
|
|
|
width = vector.size
|
|
|
|
else:
|
|
|
|
width = self.vectors.shape[1]
|
|
|
|
self.vectors.resize((new_rows, width))
|
2018-01-14 15:57:57 +03:00
|
|
|
lex = self[orth] # Adds worse to vocab
|
2017-10-31 20:25:08 +03:00
|
|
|
self.vectors.add(orth, vector=vector)
|
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):
|
2017-10-27 20:45:19 +03:00
|
|
|
"""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):
|
2017-05-20 14:59:31 +03:00
|
|
|
"""Save the current state to a directory.
|
|
|
|
|
|
|
|
path (unicode or Path): A path to a directory, which will be created if
|
2017-10-27 20:45:19 +03:00
|
|
|
it doesn't exist. Paths may be either strings or Path-like objects.
|
2017-05-20 14:59:31 +03:00
|
|
|
"""
|
2017-05-17 13:04:50 +03:00
|
|
|
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-05-20 14:59:31 +03:00
|
|
|
|
2017-08-18 21:46:56 +03:00
|
|
|
def from_disk(self, path, **exclude):
|
2017-05-20 14:59:31 +03:00
|
|
|
"""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.
|
|
|
|
"""
|
2017-05-17 13:04:50 +03:00
|
|
|
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')
|
2018-03-28 17:02:59 +03:00
|
|
|
if self.vectors.name is not None:
|
|
|
|
link_vectors_to_models(self)
|
2017-05-29 00:34:12 +03:00
|
|
|
return self
|
2016-11-01 14:25:36 +03:00
|
|
|
|
2017-05-20 14:59:31 +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:
|
2017-10-20 14:59:24 +03:00
|
|
|
return self.vectors.to_bytes()
|
2017-09-17 20:29:39 +03:00
|
|
|
|
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-20 14:59:31 +03:00
|
|
|
|
2017-05-21 15:18:46 +03:00
|
|
|
def from_bytes(self, bytes_data, **exclude):
|
2017-05-20 14:59:31 +03:00
|
|
|
"""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:
|
2017-10-20 14:59:24 +03:00
|
|
|
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)
|
2018-03-28 17:02:59 +03:00
|
|
|
if self.vectors.name is not None:
|
|
|
|
link_vectors_to_models(self)
|
2017-06-02 11:56:40 +03:00
|
|
|
return self
|
2017-05-29 00:34:12 +03:00
|
|
|
|
|
|
|
def lexemes_to_bytes(self):
|
2014-12-19 22:54:03 +03:00
|
|
|
cdef hash_t key
|
2017-05-17 13:04:50 +03:00
|
|
|
cdef size_t addr
|
2017-03-11 21:43:09 +03:00
|
|
|
cdef LexemeC* lexeme = NULL
|
2017-05-17 13:04:50 +03:00
|
|
|
cdef SerializedLexemeC lex_data
|
|
|
|
cdef int size = 0
|
💫 Small efficiency fixes to tokenizer (#2587)
This patch improves tokenizer speed by about 10%, and reduces memory usage in the `Vocab` by removing a redundant index. The `vocab._by_orth` and `vocab._by_hash` indexed on different data in v1, but in v2 the orth and the hash are identical.
The patch also fixes an uninitialized variable in the tokenizer, the `has_special` flag. This checks whether a chunk we're tokenizing triggers a special-case rule. If it does, then we avoid caching within the chunk. This check led to incorrectly rejecting some chunks from the cache.
With the `en_core_web_md` model, we now tokenize the IMDB train data at 503,104k words per second. Prior to this patch, we had 465,764k words per second.
Before switching to the regex library and supporting more languages, we had 1.3m words per second for the tokenizer. In order to recover the missing speed, we need to:
* Fix the variable-length lookarounds in the suffix, infix and `token_match` rules
* Improve the performance of the `token_match` regex
* Switch back from the `regex` library to the `re` library.
## Checklist
<!--- Before you submit the PR, go over this checklist and make sure you can
tick off all the boxes. [] -> [x] -->
- [x] I have submitted the spaCy Contributor Agreement.
- [x] I ran the tests, and all new and existing tests passed.
- [x] My changes don't require a change to the documentation, or if they do, I've added all required information.
2018-07-25 00:35:54 +03:00
|
|
|
for key, addr in self._by_orth.items():
|
2017-05-17 13:04:50 +03:00
|
|
|
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
|
💫 Small efficiency fixes to tokenizer (#2587)
This patch improves tokenizer speed by about 10%, and reduces memory usage in the `Vocab` by removing a redundant index. The `vocab._by_orth` and `vocab._by_hash` indexed on different data in v1, but in v2 the orth and the hash are identical.
The patch also fixes an uninitialized variable in the tokenizer, the `has_special` flag. This checks whether a chunk we're tokenizing triggers a special-case rule. If it does, then we avoid caching within the chunk. This check led to incorrectly rejecting some chunks from the cache.
With the `en_core_web_md` model, we now tokenize the IMDB train data at 503,104k words per second. Prior to this patch, we had 465,764k words per second.
Before switching to the regex library and supporting more languages, we had 1.3m words per second for the tokenizer. In order to recover the missing speed, we need to:
* Fix the variable-length lookarounds in the suffix, infix and `token_match` rules
* Improve the performance of the `token_match` regex
* Switch back from the `regex` library to the `re` library.
## Checklist
<!--- Before you submit the PR, go over this checklist and make sure you can
tick off all the boxes. [] -> [x] -->
- [x] I have submitted the spaCy Contributor Agreement.
- [x] I ran the tests, and all new and existing tests passed.
- [x] My changes don't require a change to the documentation, or if they do, I've added all required information.
2018-07-25 00:35:54 +03:00
|
|
|
for key, addr in self._by_orth.items():
|
2017-05-17 13:04:50 +03:00
|
|
|
if addr == 0:
|
|
|
|
continue
|
2015-07-18 23:42:15 +03:00
|
|
|
lexeme = <LexemeC*>addr
|
2017-05-17 13:04:50 +03:00
|
|
|
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
|
|
|
|
2017-05-17 13:04:50 +03:00
|
|
|
def lexemes_from_bytes(self, bytes bytes_data):
|
2017-05-20 14:59:31 +03:00
|
|
|
"""Load the binary vocabulary data from the given string."""
|
2017-05-17 13:04:50 +03:00
|
|
|
cdef LexemeC* lexeme
|
2017-03-07 22:25:12 +03:00
|
|
|
cdef hash_t key
|
|
|
|
cdef unicode py_str
|
2017-05-17 13:04:50 +03:00
|
|
|
cdef int i = 0
|
|
|
|
cdef int j = 0
|
|
|
|
cdef SerializedLexemeC lex_data
|
|
|
|
chunk_size = sizeof(lex_data.data)
|
2017-10-21 01:51:42 +03:00
|
|
|
cdef void* ptr
|
2017-05-17 13:04:50 +03:00
|
|
|
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
|
|
|
|
2017-10-21 01:51:42 +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]
|
2018-04-03 16:50:31 +03:00
|
|
|
if self.strings[py_str] != lexeme.orth:
|
|
|
|
raise ValueError(Errors.E086.format(string=py_str,
|
|
|
|
orth_id=lexeme.orth,
|
|
|
|
hash_id=self.strings[py_str]))
|
2017-03-07 22:25:12 +03:00
|
|
|
self._by_orth.set(lexeme.orth, lexeme)
|
|
|
|
self.length += 1
|
|
|
|
|
2017-11-14 21:15:04 +03:00
|
|
|
def _reset_cache(self, keys, strings):
|
💫 Small efficiency fixes to tokenizer (#2587)
This patch improves tokenizer speed by about 10%, and reduces memory usage in the `Vocab` by removing a redundant index. The `vocab._by_orth` and `vocab._by_hash` indexed on different data in v1, but in v2 the orth and the hash are identical.
The patch also fixes an uninitialized variable in the tokenizer, the `has_special` flag. This checks whether a chunk we're tokenizing triggers a special-case rule. If it does, then we avoid caching within the chunk. This check led to incorrectly rejecting some chunks from the cache.
With the `en_core_web_md` model, we now tokenize the IMDB train data at 503,104k words per second. Prior to this patch, we had 465,764k words per second.
Before switching to the regex library and supporting more languages, we had 1.3m words per second for the tokenizer. In order to recover the missing speed, we need to:
* Fix the variable-length lookarounds in the suffix, infix and `token_match` rules
* Improve the performance of the `token_match` regex
* Switch back from the `regex` library to the `re` library.
## Checklist
<!--- Before you submit the PR, go over this checklist and make sure you can
tick off all the boxes. [] -> [x] -->
- [x] I have submitted the spaCy Contributor Agreement.
- [x] I ran the tests, and all new and existing tests passed.
- [x] My changes don't require a change to the documentation, or if they do, I've added all required information.
2018-07-25 00:35:54 +03:00
|
|
|
# I'm not sure this made sense. Disable it for now.
|
|
|
|
raise NotImplementedError
|
2017-11-14 21:15:04 +03:00
|
|
|
|
2017-05-17 13:04:50 +03:00
|
|
|
|
2017-03-07 22:25:12 +03:00
|
|
|
def pickle_vocab(vocab):
|
|
|
|
sstore = vocab.strings
|
2017-11-23 19:19:50 +03:00
|
|
|
vectors = vocab.vectors
|
2017-03-07 22:25:12 +03:00
|
|
|
morph = vocab.morphology
|
|
|
|
length = vocab.length
|
|
|
|
data_dir = vocab.data_dir
|
2017-10-17 19:17:45 +03:00
|
|
|
lex_attr_getters = dill.dumps(vocab.lex_attr_getters)
|
2017-05-17 13:04:50 +03:00
|
|
|
lexemes_data = vocab.lexemes_to_bytes()
|
2017-03-07 22:25:12 +03:00
|
|
|
return (unpickle_vocab,
|
2017-11-23 19:19:50 +03:00
|
|
|
(sstore, vectors, morph, data_dir, lex_attr_getters, lexemes_data, length))
|
2017-03-07 22:25:12 +03:00
|
|
|
|
|
|
|
|
2017-11-23 19:19:50 +03:00
|
|
|
def unpickle_vocab(sstore, vectors, morphology, data_dir,
|
2017-10-27 20:45:19 +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
|
2017-11-23 19:19:50 +03:00
|
|
|
vocab.vectors = vectors
|
2017-03-07 22:25:12 +03:00
|
|
|
vocab.strings = sstore
|
|
|
|
vocab.morphology = morphology
|
|
|
|
vocab.data_dir = data_dir
|
2017-10-17 19:17:45 +03:00
|
|
|
vocab.lex_attr_getters = dill.loads(lex_attr_getters)
|
2017-05-17 13:04:50 +03:00
|
|
|
vocab.lexemes_from_bytes(lexemes_data)
|
2017-03-07 22:25:12 +03:00
|
|
|
vocab.length = length
|
|
|
|
return vocab
|
|
|
|
|
|
|
|
|
|
|
|
copy_reg.pickle(Vocab, pickle_vocab, unpickle_vocab)
|