2015-11-06 19:24:30 +03:00
|
|
|
from __future__ import absolute_import
|
2016-09-24 21:26:17 +03:00
|
|
|
from __future__ import unicode_literals
|
2016-09-24 15:08:53 +03:00
|
|
|
import pathlib
|
2016-10-09 13:24:24 +03:00
|
|
|
from contextlib import contextmanager
|
|
|
|
import shutil
|
2015-08-26 20:16:09 +03:00
|
|
|
|
2017-03-08 03:39:13 +03:00
|
|
|
import ujson
|
2015-08-27 10:16:11 +03:00
|
|
|
|
2016-09-24 15:08:53 +03:00
|
|
|
|
2016-09-24 23:16:43 +03:00
|
|
|
try:
|
|
|
|
basestring
|
|
|
|
except NameError:
|
|
|
|
basestring = str
|
|
|
|
|
2017-03-08 03:39:13 +03:00
|
|
|
try:
|
|
|
|
unicode
|
|
|
|
except NameError:
|
|
|
|
unicode = str
|
2016-09-24 23:16:43 +03:00
|
|
|
|
2015-08-26 20:16:09 +03:00
|
|
|
from .tokenizer import Tokenizer
|
|
|
|
from .vocab import Vocab
|
|
|
|
from .tagger import Tagger
|
|
|
|
from .matcher import Matcher
|
|
|
|
from . import attrs
|
|
|
|
from . import orth
|
2016-09-24 21:26:17 +03:00
|
|
|
from . import util
|
2016-12-18 18:55:25 +03:00
|
|
|
from . import language_data
|
2016-09-25 16:37:33 +03:00
|
|
|
from .lemmatizer import Lemmatizer
|
2016-10-09 13:24:24 +03:00
|
|
|
from .train import Trainer
|
2015-08-26 20:16:09 +03:00
|
|
|
|
2016-09-24 21:26:17 +03:00
|
|
|
from .attrs import TAG, DEP, ENT_IOB, ENT_TYPE, HEAD, PROB, LANG, IS_STOP
|
2016-09-26 12:57:54 +03:00
|
|
|
from .syntax.parser import get_templates
|
2016-10-09 13:24:24 +03:00
|
|
|
from .syntax.nonproj import PseudoProjectivity
|
2016-10-16 18:58:12 +03:00
|
|
|
from .pipeline import DependencyParser, EntityRecognizer
|
2016-11-25 18:01:20 +03:00
|
|
|
from .syntax.arc_eager import ArcEager
|
|
|
|
from .syntax.ner import BiluoPushDown
|
2016-10-09 13:24:24 +03:00
|
|
|
|
2015-08-27 10:16:11 +03:00
|
|
|
|
2016-09-24 21:26:17 +03:00
|
|
|
class BaseDefaults(object):
|
2016-10-18 17:18:25 +03:00
|
|
|
@classmethod
|
|
|
|
def create_lemmatizer(cls, nlp=None):
|
2017-03-15 12:52:50 +03:00
|
|
|
return Lemmatizer(cls.lemma_index, cls.lemma_exc, cls.lemma_rules)
|
2016-10-18 17:18:25 +03:00
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def create_vocab(cls, nlp=None):
|
|
|
|
lemmatizer = cls.create_lemmatizer(nlp)
|
|
|
|
if nlp is None or nlp.path is None:
|
2016-11-24 02:13:55 +03:00
|
|
|
lex_attr_getters = dict(cls.lex_attr_getters)
|
|
|
|
# This is very messy, but it's the minimal working fix to Issue #639.
|
|
|
|
# This defaults stuff needs to be refactored (again)
|
|
|
|
lex_attr_getters[IS_STOP] = lambda string: string.lower() in cls.stop_words
|
2017-03-15 17:24:40 +03:00
|
|
|
vocab = Vocab(lex_attr_getters=lex_attr_getters, tag_map=cls.tag_map,
|
2016-10-18 17:18:25 +03:00
|
|
|
lemmatizer=lemmatizer)
|
2016-09-26 12:07:46 +03:00
|
|
|
else:
|
2017-03-15 17:24:40 +03:00
|
|
|
vocab = Vocab.load(nlp.path, lex_attr_getters=cls.lex_attr_getters,
|
2016-10-18 17:18:25 +03:00
|
|
|
tag_map=cls.tag_map, lemmatizer=lemmatizer)
|
2017-03-15 17:24:40 +03:00
|
|
|
for tag_str, exc in cls.morph_rules.items():
|
|
|
|
for orth_str, attrs in exc.items():
|
|
|
|
vocab.morphology.add_special_case(tag_str, orth_str, attrs)
|
|
|
|
return vocab
|
2016-12-18 18:54:52 +03:00
|
|
|
|
2016-10-18 17:18:25 +03:00
|
|
|
@classmethod
|
|
|
|
def add_vectors(cls, nlp=None):
|
2016-10-20 19:27:48 +03:00
|
|
|
if nlp is None or nlp.path is None:
|
|
|
|
return False
|
|
|
|
else:
|
|
|
|
vec_path = nlp.path / 'vocab' / 'vec.bin'
|
2016-11-23 15:50:24 +03:00
|
|
|
if vec_path.exists():
|
|
|
|
return lambda vocab: vocab.load_vectors_from_bin_loc(vec_path)
|
2016-10-18 17:18:25 +03:00
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def create_tokenizer(cls, nlp=None):
|
|
|
|
rules = cls.tokenizer_exceptions
|
2017-01-03 20:17:57 +03:00
|
|
|
if cls.token_match:
|
|
|
|
token_match = cls.token_match
|
2016-11-02 22:35:29 +03:00
|
|
|
if cls.prefixes:
|
|
|
|
prefix_search = util.compile_prefix_regex(cls.prefixes).search
|
|
|
|
else:
|
|
|
|
prefix_search = None
|
|
|
|
if cls.suffixes:
|
|
|
|
suffix_search = util.compile_suffix_regex(cls.suffixes).search
|
|
|
|
else:
|
|
|
|
suffix_search = None
|
|
|
|
if cls.infixes:
|
|
|
|
infix_finditer = util.compile_infix_regex(cls.infixes).finditer
|
|
|
|
else:
|
|
|
|
infix_finditer = None
|
2016-10-18 17:18:25 +03:00
|
|
|
vocab = nlp.vocab if nlp is not None else cls.create_vocab(nlp)
|
2016-11-26 14:36:04 +03:00
|
|
|
return Tokenizer(vocab, rules=rules,
|
2016-10-18 17:18:25 +03:00
|
|
|
prefix_search=prefix_search, suffix_search=suffix_search,
|
2017-01-03 20:17:57 +03:00
|
|
|
infix_finditer=infix_finditer, token_match=token_match)
|
2016-09-24 15:08:53 +03:00
|
|
|
|
2016-10-18 17:18:25 +03:00
|
|
|
@classmethod
|
|
|
|
def create_tagger(cls, nlp=None):
|
|
|
|
if nlp is None:
|
|
|
|
return Tagger(cls.create_vocab(), features=cls.tagger_features)
|
2016-10-23 21:19:01 +03:00
|
|
|
elif nlp.path is False:
|
2016-10-18 17:18:25 +03:00
|
|
|
return Tagger(nlp.vocab, features=cls.tagger_features)
|
2016-10-23 21:19:01 +03:00
|
|
|
elif nlp.path is None or not (nlp.path / 'pos').exists():
|
2016-10-19 20:55:19 +03:00
|
|
|
return None
|
2016-09-24 15:08:53 +03:00
|
|
|
else:
|
2016-10-18 20:33:04 +03:00
|
|
|
return Tagger.load(nlp.path / 'pos', nlp.vocab)
|
2016-10-09 13:24:24 +03:00
|
|
|
|
2016-10-18 17:18:25 +03:00
|
|
|
@classmethod
|
2016-11-25 18:01:20 +03:00
|
|
|
def create_parser(cls, nlp=None, **cfg):
|
2016-10-18 17:18:25 +03:00
|
|
|
if nlp is None:
|
2016-11-25 18:01:20 +03:00
|
|
|
return DependencyParser(cls.create_vocab(), features=cls.parser_features,
|
|
|
|
**cfg)
|
2016-10-23 21:19:01 +03:00
|
|
|
elif nlp.path is False:
|
2016-11-25 18:01:20 +03:00
|
|
|
return DependencyParser(nlp.vocab, features=cls.parser_features, **cfg)
|
2016-10-23 21:19:01 +03:00
|
|
|
elif nlp.path is None or not (nlp.path / 'deps').exists():
|
2016-10-19 20:55:19 +03:00
|
|
|
return None
|
2016-09-30 20:56:06 +03:00
|
|
|
else:
|
2016-11-25 18:01:20 +03:00
|
|
|
return DependencyParser.load(nlp.path / 'deps', nlp.vocab, **cfg)
|
2016-09-24 15:08:53 +03:00
|
|
|
|
2016-10-18 17:18:25 +03:00
|
|
|
@classmethod
|
2016-11-25 18:01:20 +03:00
|
|
|
def create_entity(cls, nlp=None, **cfg):
|
2016-10-18 17:18:25 +03:00
|
|
|
if nlp is None:
|
2016-11-25 18:01:20 +03:00
|
|
|
return EntityRecognizer(cls.create_vocab(), features=cls.entity_features, **cfg)
|
2016-10-23 21:19:01 +03:00
|
|
|
elif nlp.path is False:
|
2016-11-25 18:01:20 +03:00
|
|
|
return EntityRecognizer(nlp.vocab, features=cls.entity_features, **cfg)
|
2016-10-23 21:19:01 +03:00
|
|
|
elif nlp.path is None or not (nlp.path / 'ner').exists():
|
2016-10-19 20:55:19 +03:00
|
|
|
return None
|
2016-09-26 12:07:46 +03:00
|
|
|
else:
|
2016-11-25 18:01:20 +03:00
|
|
|
return EntityRecognizer.load(nlp.path / 'ner', nlp.vocab, **cfg)
|
2016-09-24 15:08:53 +03:00
|
|
|
|
2016-10-18 17:18:25 +03:00
|
|
|
@classmethod
|
|
|
|
def create_matcher(cls, nlp=None):
|
|
|
|
if nlp is None:
|
|
|
|
return Matcher(cls.create_vocab())
|
2016-10-23 21:19:01 +03:00
|
|
|
elif nlp.path is False:
|
2016-10-18 17:18:25 +03:00
|
|
|
return Matcher(nlp.vocab)
|
2016-10-23 21:19:01 +03:00
|
|
|
elif nlp.path is None or not (nlp.path / 'vocab').exists():
|
2016-10-19 20:55:19 +03:00
|
|
|
return None
|
2016-10-18 17:18:25 +03:00
|
|
|
else:
|
|
|
|
return Matcher.load(nlp.path / 'vocab', nlp.vocab)
|
2016-10-14 18:38:29 +03:00
|
|
|
|
2016-10-18 17:18:25 +03:00
|
|
|
@classmethod
|
|
|
|
def create_pipeline(self, nlp=None):
|
2016-10-14 18:38:29 +03:00
|
|
|
pipeline = []
|
2016-10-18 17:18:25 +03:00
|
|
|
if nlp is None:
|
|
|
|
return []
|
2016-10-09 13:24:24 +03:00
|
|
|
if nlp.tagger:
|
|
|
|
pipeline.append(nlp.tagger)
|
|
|
|
if nlp.parser:
|
|
|
|
pipeline.append(nlp.parser)
|
2017-04-06 18:33:15 +03:00
|
|
|
pipeline.append(PseudoProjectivity.deprojectivize)
|
2016-10-09 13:24:24 +03:00
|
|
|
if nlp.entity:
|
|
|
|
pipeline.append(nlp.entity)
|
|
|
|
return pipeline
|
|
|
|
|
2017-01-03 20:17:57 +03:00
|
|
|
token_match = language_data.TOKEN_MATCH
|
|
|
|
|
2016-12-18 18:55:25 +03:00
|
|
|
prefixes = tuple(language_data.TOKENIZER_PREFIXES)
|
2016-09-24 15:08:53 +03:00
|
|
|
|
2016-12-18 18:55:25 +03:00
|
|
|
suffixes = tuple(language_data.TOKENIZER_SUFFIXES)
|
|
|
|
|
|
|
|
infixes = tuple(language_data.TOKENIZER_INFIXES)
|
|
|
|
|
|
|
|
tag_map = dict(language_data.TAG_MAP)
|
2016-10-09 13:24:24 +03:00
|
|
|
|
|
|
|
tokenizer_exceptions = {}
|
2016-12-18 18:54:52 +03:00
|
|
|
|
2016-09-26 12:57:54 +03:00
|
|
|
parser_features = get_templates('parser')
|
2016-12-18 18:54:52 +03:00
|
|
|
|
2016-09-26 12:57:54 +03:00
|
|
|
entity_features = get_templates('ner')
|
2016-09-24 16:42:01 +03:00
|
|
|
|
2016-10-18 17:18:25 +03:00
|
|
|
tagger_features = Tagger.feature_templates # TODO -- fix this
|
|
|
|
|
2016-09-24 21:26:17 +03:00
|
|
|
stop_words = set()
|
|
|
|
|
2016-12-18 17:50:09 +03:00
|
|
|
lemma_rules = {}
|
2017-03-15 12:52:50 +03:00
|
|
|
lemma_exc = {}
|
|
|
|
lemma_index = {}
|
2017-03-15 17:24:40 +03:00
|
|
|
morph_rules = {}
|
2016-12-18 17:50:09 +03:00
|
|
|
|
2016-09-24 16:42:01 +03:00
|
|
|
lex_attr_getters = {
|
|
|
|
attrs.LOWER: lambda string: string.lower(),
|
|
|
|
attrs.NORM: lambda string: string,
|
|
|
|
attrs.SHAPE: orth.word_shape,
|
|
|
|
attrs.PREFIX: lambda string: string[0],
|
|
|
|
attrs.SUFFIX: lambda string: string[-3:],
|
|
|
|
attrs.CLUSTER: lambda string: 0,
|
|
|
|
attrs.IS_ALPHA: orth.is_alpha,
|
|
|
|
attrs.IS_ASCII: orth.is_ascii,
|
|
|
|
attrs.IS_DIGIT: lambda string: string.isdigit(),
|
|
|
|
attrs.IS_LOWER: orth.is_lower,
|
|
|
|
attrs.IS_PUNCT: orth.is_punct,
|
|
|
|
attrs.IS_SPACE: lambda string: string.isspace(),
|
|
|
|
attrs.IS_TITLE: orth.is_title,
|
|
|
|
attrs.IS_UPPER: orth.is_upper,
|
|
|
|
attrs.IS_BRACKET: orth.is_bracket,
|
|
|
|
attrs.IS_QUOTE: orth.is_quote,
|
|
|
|
attrs.IS_LEFT_PUNCT: orth.is_left_punct,
|
|
|
|
attrs.IS_RIGHT_PUNCT: orth.is_right_punct,
|
|
|
|
attrs.LIKE_URL: orth.like_url,
|
|
|
|
attrs.LIKE_NUM: orth.like_number,
|
|
|
|
attrs.LIKE_EMAIL: orth.like_email,
|
|
|
|
attrs.IS_STOP: lambda string: False,
|
|
|
|
attrs.IS_OOV: lambda string: True
|
|
|
|
}
|
2015-09-14 10:48:51 +03:00
|
|
|
|
2015-08-26 20:16:09 +03:00
|
|
|
|
2016-09-24 15:08:53 +03:00
|
|
|
class Language(object):
|
2017-04-15 12:59:21 +03:00
|
|
|
"""
|
|
|
|
A text-processing pipeline. Usually you'll load this once per process, and
|
2016-09-24 15:08:53 +03:00
|
|
|
pass the instance around your program.
|
2017-04-15 12:59:21 +03:00
|
|
|
"""
|
2016-09-24 21:26:17 +03:00
|
|
|
Defaults = BaseDefaults
|
2016-09-24 15:08:53 +03:00
|
|
|
lang = None
|
2015-08-25 16:37:17 +03:00
|
|
|
|
2016-10-09 13:24:24 +03:00
|
|
|
@classmethod
|
2017-04-15 00:51:24 +03:00
|
|
|
def setup_directory(cls, path, **configs):
|
|
|
|
for name, config in configs.items():
|
|
|
|
directory = path / name
|
|
|
|
if directory.exists():
|
|
|
|
shutil.rmtree(str(directory))
|
|
|
|
directory.mkdir()
|
|
|
|
with (directory / 'config.json').open('wb') as file_:
|
|
|
|
data = ujson.dumps(config, indent=2)
|
|
|
|
if isinstance(data, unicode):
|
|
|
|
data = data.encode('utf8')
|
|
|
|
file_.write(data)
|
|
|
|
if not (path / 'vocab').exists():
|
|
|
|
(path / 'vocab').mkdir()
|
2016-10-09 13:24:24 +03:00
|
|
|
|
2017-04-15 00:51:24 +03:00
|
|
|
@classmethod
|
|
|
|
@contextmanager
|
|
|
|
def train(cls, path, gold_tuples, **configs):
|
2016-10-09 13:24:24 +03:00
|
|
|
if parser_cfg['pseudoprojective']:
|
|
|
|
# preprocess training data here before ArcEager.get_labels() is called
|
|
|
|
gold_tuples = PseudoProjectivity.preprocess_training_data(gold_tuples)
|
|
|
|
|
2017-04-15 00:51:24 +03:00
|
|
|
for subdir in ('deps', 'ner', 'pos'):
|
|
|
|
if subdir not in configs:
|
|
|
|
configs[subdir] = {}
|
|
|
|
configs['deps']['actions'] = ArcEager.get_actions(gold_parses=gold_tuples)
|
|
|
|
configs['ner']['actions'] = BiluoPushDown.get_actions(gold_parses=gold_tuples)
|
|
|
|
|
|
|
|
cls.setup_directory(path, **configs)
|
2016-10-09 13:24:24 +03:00
|
|
|
|
2016-10-12 14:45:58 +03:00
|
|
|
self = cls(
|
|
|
|
path=path,
|
|
|
|
vocab=False,
|
|
|
|
tokenizer=False,
|
|
|
|
tagger=False,
|
|
|
|
parser=False,
|
|
|
|
entity=False,
|
|
|
|
matcher=False,
|
|
|
|
serializer=False,
|
|
|
|
vectors=False,
|
|
|
|
pipeline=False)
|
|
|
|
|
2016-11-25 18:01:20 +03:00
|
|
|
self.vocab = self.Defaults.create_vocab(self)
|
|
|
|
self.tokenizer = self.Defaults.create_tokenizer(self)
|
|
|
|
self.tagger = self.Defaults.create_tagger(self)
|
|
|
|
self.parser = self.Defaults.create_parser(self)
|
|
|
|
self.entity = self.Defaults.create_entity(self)
|
|
|
|
self.pipeline = self.Defaults.create_pipeline(self)
|
2016-10-09 13:24:24 +03:00
|
|
|
yield Trainer(self, gold_tuples)
|
2017-04-15 00:51:24 +03:00
|
|
|
self.end_training()
|
|
|
|
self.save_to_directory(path, deps=self.parser.cfg, ner=self.entity.cfg,
|
|
|
|
pos=self.tagger.cfg)
|
2016-10-09 13:24:24 +03:00
|
|
|
|
2016-11-23 15:26:34 +03:00
|
|
|
def __init__(self, **overrides):
|
2016-11-23 18:12:45 +03:00
|
|
|
if 'data_dir' in overrides and 'path' not in overrides:
|
2016-10-18 17:18:25 +03:00
|
|
|
raise ValueError("The argument 'data_dir' has been renamed to 'path'")
|
2016-11-24 01:48:55 +03:00
|
|
|
path = overrides.get('path', True)
|
2016-09-24 15:08:53 +03:00
|
|
|
if isinstance(path, basestring):
|
|
|
|
path = pathlib.Path(path)
|
2016-10-15 15:12:54 +03:00
|
|
|
if path is True:
|
2017-03-18 14:58:45 +03:00
|
|
|
path = util.get_data_path() / self.lang
|
2017-03-26 17:46:00 +03:00
|
|
|
if not path.exists() and 'path' not in overrides:
|
|
|
|
path = None
|
2017-03-16 19:14:56 +03:00
|
|
|
self.meta = overrides.get('meta', {})
|
2016-09-24 16:42:01 +03:00
|
|
|
self.path = path
|
2016-12-18 18:54:52 +03:00
|
|
|
|
2016-10-18 17:18:25 +03:00
|
|
|
self.vocab = self.Defaults.create_vocab(self) \
|
|
|
|
if 'vocab' not in overrides \
|
|
|
|
else overrides['vocab']
|
2016-10-20 19:27:48 +03:00
|
|
|
add_vectors = self.Defaults.add_vectors(self) \
|
|
|
|
if 'add_vectors' not in overrides \
|
|
|
|
else overrides['add_vectors']
|
2016-11-25 18:01:20 +03:00
|
|
|
if self.vocab and add_vectors:
|
2016-10-20 19:27:48 +03:00
|
|
|
add_vectors(self.vocab)
|
2016-10-18 17:18:25 +03:00
|
|
|
self.tokenizer = self.Defaults.create_tokenizer(self) \
|
|
|
|
if 'tokenizer' not in overrides \
|
|
|
|
else overrides['tokenizer']
|
|
|
|
self.tagger = self.Defaults.create_tagger(self) \
|
|
|
|
if 'tagger' not in overrides \
|
|
|
|
else overrides['tagger']
|
2016-10-18 20:36:44 +03:00
|
|
|
self.parser = self.Defaults.create_parser(self) \
|
2016-10-18 17:18:25 +03:00
|
|
|
if 'parser' not in overrides \
|
|
|
|
else overrides['parser']
|
|
|
|
self.entity = self.Defaults.create_entity(self) \
|
|
|
|
if 'entity' not in overrides \
|
|
|
|
else overrides['entity']
|
|
|
|
self.matcher = self.Defaults.create_matcher(self) \
|
|
|
|
if 'matcher' not in overrides \
|
|
|
|
else overrides['matcher']
|
|
|
|
|
|
|
|
if 'make_doc' in overrides:
|
|
|
|
self.make_doc = overrides['make_doc']
|
|
|
|
elif 'create_make_doc' in overrides:
|
2016-10-23 15:24:16 +03:00
|
|
|
self.make_doc = overrides['create_make_doc'](self)
|
2016-11-02 21:57:13 +03:00
|
|
|
elif not hasattr(self, 'make_doc'):
|
2016-10-18 17:18:25 +03:00
|
|
|
self.make_doc = lambda text: self.tokenizer(text)
|
|
|
|
if 'pipeline' in overrides:
|
|
|
|
self.pipeline = overrides['pipeline']
|
|
|
|
elif 'create_pipeline' in overrides:
|
2016-10-23 15:24:16 +03:00
|
|
|
self.pipeline = overrides['create_pipeline'](self)
|
2016-10-09 13:24:24 +03:00
|
|
|
else:
|
2016-10-18 17:18:25 +03:00
|
|
|
self.pipeline = [self.tagger, self.parser, self.matcher, self.entity]
|
2015-10-12 11:33:11 +03:00
|
|
|
|
2015-09-15 07:41:48 +03:00
|
|
|
def __call__(self, text, tag=True, parse=True, entity=True):
|
2015-08-25 16:37:17 +03:00
|
|
|
"""Apply the pipeline to some text. The text can span multiple sentences,
|
|
|
|
and can contain arbtrary whitespace. Alignment into the original string
|
|
|
|
is preserved.
|
2016-12-18 18:54:52 +03:00
|
|
|
|
2015-08-25 16:37:17 +03:00
|
|
|
Args:
|
|
|
|
text (unicode): The text to be processed.
|
|
|
|
|
|
|
|
Returns:
|
2016-11-01 14:25:36 +03:00
|
|
|
doc (Doc): A container for accessing the annotations.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
>>> from spacy.en import English
|
|
|
|
>>> nlp = English()
|
|
|
|
>>> tokens = nlp('An example sentence. Another example sentence.')
|
|
|
|
>>> tokens[0].orth_, tokens[0].head.tag_
|
|
|
|
('An', 'NN')
|
2015-08-25 16:37:17 +03:00
|
|
|
"""
|
2016-10-14 18:38:29 +03:00
|
|
|
doc = self.make_doc(text)
|
2015-08-25 16:37:17 +03:00
|
|
|
if self.entity and entity:
|
2016-01-19 22:09:26 +03:00
|
|
|
# Add any of the entity labels already set, in case we don't have them.
|
2016-05-17 17:55:42 +03:00
|
|
|
for token in doc:
|
|
|
|
if token.ent_type != 0:
|
|
|
|
self.entity.add_label(token.ent_type)
|
|
|
|
skip = {self.tagger: not tag, self.parser: not parse, self.entity: not entity}
|
2016-10-14 18:38:29 +03:00
|
|
|
for proc in self.pipeline:
|
2016-05-17 17:55:42 +03:00
|
|
|
if proc and not skip.get(proc):
|
|
|
|
proc(doc)
|
|
|
|
return doc
|
2015-08-25 16:37:17 +03:00
|
|
|
|
2016-10-14 18:38:29 +03:00
|
|
|
def pipe(self, texts, tag=True, parse=True, entity=True, n_threads=2, batch_size=1000):
|
2017-04-15 12:59:21 +03:00
|
|
|
"""
|
|
|
|
Process texts as a stream, and yield Doc objects in order.
|
2016-12-18 18:54:52 +03:00
|
|
|
|
2016-11-01 14:25:36 +03:00
|
|
|
Supports GIL-free multi-threading.
|
2016-12-18 18:54:52 +03:00
|
|
|
|
2016-11-01 14:25:36 +03:00
|
|
|
Arguments:
|
|
|
|
texts (iterator)
|
|
|
|
tag (bool)
|
|
|
|
parse (bool)
|
|
|
|
entity (bool)
|
2017-04-15 12:59:21 +03:00
|
|
|
"""
|
2016-05-17 17:55:42 +03:00
|
|
|
skip = {self.tagger: not tag, self.parser: not parse, self.entity: not entity}
|
2016-10-14 18:38:29 +03:00
|
|
|
stream = (self.make_doc(text) for text in texts)
|
|
|
|
for proc in self.pipeline:
|
2016-05-17 17:55:42 +03:00
|
|
|
if proc and not skip.get(proc):
|
|
|
|
if hasattr(proc, 'pipe'):
|
|
|
|
stream = proc.pipe(stream, n_threads=n_threads, batch_size=batch_size)
|
|
|
|
else:
|
|
|
|
stream = (proc(item) for item in stream)
|
2016-02-03 04:04:55 +03:00
|
|
|
for doc in stream:
|
|
|
|
yield doc
|
2016-02-01 11:01:13 +03:00
|
|
|
|
2017-04-15 00:51:24 +03:00
|
|
|
def save_to_directory(self, path):
|
|
|
|
configs = {
|
|
|
|
'pos': self.tagger.cfg if self.tagger else {},
|
|
|
|
'deps': self.parser.cfg if self.parser else {},
|
|
|
|
'ner': self.entity.cfg if self.entity else {},
|
|
|
|
}
|
2016-12-18 18:54:52 +03:00
|
|
|
|
2017-04-15 00:51:24 +03:00
|
|
|
self.setup_directory(path, **configs)
|
|
|
|
|
|
|
|
strings_loc = path / 'vocab' / 'strings.json'
|
|
|
|
with strings_loc.open('w', encoding='utf8') as file_:
|
|
|
|
self.vocab.strings.dump(file_)
|
|
|
|
self.vocab.dump(path / 'vocab' / 'lexemes.bin')
|
|
|
|
# TODO: Word vectors?
|
2016-10-09 13:24:24 +03:00
|
|
|
if self.tagger:
|
|
|
|
self.tagger.model.dump(str(path / 'pos' / 'model'))
|
2016-02-03 00:49:55 +03:00
|
|
|
if self.parser:
|
2016-10-12 21:26:38 +03:00
|
|
|
self.parser.model.dump(str(path / 'deps' / 'model'))
|
2016-02-03 00:49:55 +03:00
|
|
|
if self.entity:
|
2016-10-09 13:24:24 +03:00
|
|
|
self.entity.model.dump(str(path / 'ner' / 'model'))
|
2016-12-18 18:54:52 +03:00
|
|
|
|
2017-04-15 00:51:24 +03:00
|
|
|
def end_training(self, path=None):
|
2016-02-03 00:49:55 +03:00
|
|
|
if self.tagger:
|
2017-04-15 00:51:24 +03:00
|
|
|
self.tagger.model.end_training()
|
2016-02-03 00:49:55 +03:00
|
|
|
if self.parser:
|
2017-04-15 00:51:24 +03:00
|
|
|
self.parser.model.end_training()
|
2016-02-03 00:49:55 +03:00
|
|
|
if self.entity:
|
2017-04-15 00:51:24 +03:00
|
|
|
self.entity.model.end_training()
|
|
|
|
# NB: This is slightly different from before --- we no longer default
|
|
|
|
# to taking nlp.path
|
|
|
|
if path is not None:
|
|
|
|
self.save_to_directory(path)
|
|
|
|
|