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
|
2015-09-09 15:31:09 +03:00
|
|
|
from warnings import warn
|
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
|
|
|
|
2015-08-27 10:16:11 +03:00
|
|
|
try:
|
|
|
|
import ujson as json
|
|
|
|
except ImportError:
|
|
|
|
import json
|
|
|
|
|
2016-09-24 15:08:53 +03:00
|
|
|
|
2016-09-24 23:16:43 +03:00
|
|
|
try:
|
|
|
|
basestring
|
|
|
|
except NameError:
|
|
|
|
basestring = str
|
|
|
|
|
|
|
|
|
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-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-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):
|
|
|
|
if nlp is None or nlp.path is None:
|
|
|
|
return Lemmatizer({}, {}, {})
|
2016-09-26 12:07:46 +03:00
|
|
|
else:
|
2016-10-18 17:18:25 +03:00
|
|
|
return Lemmatizer.load(nlp.path)
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def create_vocab(cls, nlp=None):
|
|
|
|
lemmatizer = cls.create_lemmatizer(nlp)
|
|
|
|
if nlp is None or nlp.path is None:
|
|
|
|
return Vocab(lex_attr_getters=cls.lex_attr_getters, tag_map=cls.tag_map,
|
|
|
|
lemmatizer=lemmatizer)
|
2016-09-26 12:07:46 +03:00
|
|
|
else:
|
2016-10-18 17:18:25 +03:00
|
|
|
return Vocab.load(nlp.path, lex_attr_getters=cls.lex_attr_getters,
|
|
|
|
tag_map=cls.tag_map, lemmatizer=lemmatizer)
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def add_vectors(cls, nlp=None):
|
|
|
|
return True
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def create_tokenizer(cls, nlp=None):
|
|
|
|
rules = cls.tokenizer_exceptions
|
|
|
|
prefix_search = util.compile_prefix_regex(cls.prefixes).search
|
|
|
|
suffix_search = util.compile_suffix_regex(cls.suffixes).search
|
|
|
|
infix_finditer = util.compile_infix_regex(cls.infixes).finditer
|
|
|
|
vocab = nlp.vocab if nlp is not None else cls.create_vocab(nlp)
|
|
|
|
return Tokenizer(nlp.vocab, rules=rules,
|
|
|
|
prefix_search=prefix_search, suffix_search=suffix_search,
|
|
|
|
infix_finditer=infix_finditer)
|
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-19 20:55:19 +03:00
|
|
|
elif nlp.path is None:
|
2016-10-18 17:18:25 +03:00
|
|
|
return Tagger(nlp.vocab, features=cls.tagger_features)
|
2016-10-19 20:55:19 +03:00
|
|
|
elif not (nlp.path / 'pos').exists():
|
|
|
|
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
|
|
|
|
def create_parser(cls, nlp=None):
|
|
|
|
if nlp is None:
|
|
|
|
return DependencyParser(cls.create_vocab(), features=cls.parser_features)
|
2016-10-19 20:55:19 +03:00
|
|
|
elif nlp.path is None:
|
2016-10-18 17:18:25 +03:00
|
|
|
return DependencyParser(nlp.vocab, features=cls.parser_features)
|
2016-10-19 20:55:19 +03:00
|
|
|
elif not (nlp.path / 'deps').exists():
|
|
|
|
return None
|
2016-09-30 20:56:06 +03:00
|
|
|
else:
|
2016-10-18 17:18:25 +03:00
|
|
|
return DependencyParser.load(nlp.path / 'deps', nlp.vocab)
|
2016-09-24 15:08:53 +03:00
|
|
|
|
2016-10-18 17:18:25 +03:00
|
|
|
@classmethod
|
|
|
|
def create_entity(cls, nlp=None):
|
|
|
|
if nlp is None:
|
|
|
|
return EntityRecognizer(cls.create_vocab(), features=cls.entity_features)
|
2016-10-19 20:55:19 +03:00
|
|
|
elif nlp.path is None:
|
2016-10-18 17:18:25 +03:00
|
|
|
return EntityRecognizer(nlp.vocab, features=cls.entity_features)
|
2016-10-19 20:55:19 +03:00
|
|
|
elif not (nlp.path / 'ner').exists():
|
|
|
|
return None
|
2016-09-26 12:07:46 +03:00
|
|
|
else:
|
2016-10-18 17:18:25 +03:00
|
|
|
return EntityRecognizer.load(nlp.path / 'ner', nlp.vocab)
|
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-19 20:55:19 +03:00
|
|
|
elif nlp.path is None:
|
2016-10-18 17:18:25 +03:00
|
|
|
return Matcher(nlp.vocab)
|
2016-10-19 20:55:19 +03:00
|
|
|
elif not (nlp.path / 'vocab').exists():
|
|
|
|
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)
|
|
|
|
if nlp.entity:
|
|
|
|
pipeline.append(nlp.entity)
|
|
|
|
return pipeline
|
|
|
|
|
|
|
|
prefixes = tuple()
|
|
|
|
|
|
|
|
suffixes = tuple()
|
2016-09-24 15:08:53 +03:00
|
|
|
|
2016-10-09 13:24:24 +03:00
|
|
|
infixes = tuple()
|
|
|
|
|
|
|
|
tag_map = {}
|
|
|
|
|
|
|
|
tokenizer_exceptions = {}
|
|
|
|
|
2016-09-26 12:57:54 +03:00
|
|
|
parser_features = get_templates('parser')
|
|
|
|
|
|
|
|
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-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):
|
|
|
|
'''A text-processing pipeline. Usually you'll load this once per process, and
|
|
|
|
pass the instance around your program.
|
|
|
|
'''
|
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
|
|
|
|
@contextmanager
|
|
|
|
def train(cls, path, gold_tuples, *configs):
|
|
|
|
if isinstance(path, basestring):
|
|
|
|
path = pathlib.Path(path)
|
|
|
|
tagger_cfg, parser_cfg, entity_cfg = configs
|
2016-10-12 21:26:38 +03:00
|
|
|
dep_model_dir = path / 'deps'
|
2016-10-09 13:24:24 +03:00
|
|
|
ner_model_dir = path / 'ner'
|
|
|
|
pos_model_dir = path / 'pos'
|
|
|
|
if dep_model_dir.exists():
|
|
|
|
shutil.rmtree(str(dep_model_dir))
|
|
|
|
if ner_model_dir.exists():
|
|
|
|
shutil.rmtree(str(ner_model_dir))
|
|
|
|
if pos_model_dir.exists():
|
|
|
|
shutil.rmtree(str(pos_model_dir))
|
|
|
|
dep_model_dir.mkdir()
|
|
|
|
ner_model_dir.mkdir()
|
|
|
|
pos_model_dir.mkdir()
|
|
|
|
|
|
|
|
if parser_cfg['pseudoprojective']:
|
|
|
|
# preprocess training data here before ArcEager.get_labels() is called
|
|
|
|
gold_tuples = PseudoProjectivity.preprocess_training_data(gold_tuples)
|
|
|
|
|
|
|
|
parser_cfg['labels'] = ArcEager.get_labels(gold_tuples)
|
|
|
|
entity_cfg['labels'] = BiluoPushDown.get_labels(gold_tuples)
|
|
|
|
|
|
|
|
with (dep_model_dir / 'config.json').open('wb') as file_:
|
|
|
|
json.dump(parser_cfg, file_)
|
|
|
|
with (ner_model_dir / 'config.json').open('wb') as file_:
|
|
|
|
json.dump(entity_cfg, file_)
|
|
|
|
with (pos_model_dir / 'config.json').open('wb') as file_:
|
|
|
|
json.dump(tagger_cfg, file_)
|
|
|
|
|
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-10-09 13:24:24 +03:00
|
|
|
self.defaults.parser_labels = parser_cfg['labels']
|
|
|
|
self.defaults.entity_labels = entity_cfg['labels']
|
2016-10-12 14:45:58 +03:00
|
|
|
|
|
|
|
self.vocab = self.defaults.Vocab()
|
2016-10-09 13:24:24 +03:00
|
|
|
self.tokenizer = self.defaults.Tokenizer(self.vocab)
|
|
|
|
self.tagger = self.defaults.Tagger(self.vocab, **tagger_cfg)
|
|
|
|
self.parser = self.defaults.Parser(self.vocab, **parser_cfg)
|
|
|
|
self.entity = self.defaults.Entity(self.vocab, **entity_cfg)
|
|
|
|
self.pipeline = self.defaults.Pipeline(self)
|
|
|
|
yield Trainer(self, gold_tuples)
|
|
|
|
self.end_training()
|
|
|
|
|
2016-10-18 17:18:25 +03:00
|
|
|
def __init__(self, path=True, **overrides):
|
|
|
|
if 'data_dir' in overrides and 'path' not in overrides:
|
|
|
|
raise ValueError("The argument 'data_dir' has been renamed to 'path'")
|
|
|
|
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:
|
2016-09-24 21:26:17 +03:00
|
|
|
path = util.match_best_version(self.lang, '', util.get_data_path())
|
2016-10-18 17:18:25 +03:00
|
|
|
|
2016-09-24 16:42:01 +03:00
|
|
|
self.path = path
|
2016-10-18 17:18:25 +03:00
|
|
|
|
|
|
|
self.vocab = self.Defaults.create_vocab(self) \
|
|
|
|
if 'vocab' not in overrides \
|
|
|
|
else overrides['vocab']
|
|
|
|
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:
|
|
|
|
self.make_doc = overrides['create_make_doc']
|
2016-10-14 18:38:29 +03:00
|
|
|
else:
|
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:
|
|
|
|
self.pipeline = overrides['create_pipeline']
|
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.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
text (unicode): The text to be processed.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
tokens (spacy.tokens.Doc):
|
|
|
|
|
|
|
|
>>> from spacy.en import English
|
|
|
|
>>> nlp = English()
|
|
|
|
>>> tokens = nlp('An example sentence. Another example sentence.')
|
|
|
|
>>> tokens[0].orth_, tokens[0].head.tag_
|
|
|
|
('An', 'NN')
|
|
|
|
"""
|
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):
|
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
|
|
|
|
2016-09-24 15:08:53 +03:00
|
|
|
def end_training(self, path=None):
|
|
|
|
if path is None:
|
|
|
|
path = self.path
|
2016-10-09 13:24:24 +03:00
|
|
|
elif isinstance(path, basestring):
|
|
|
|
path = pathlib.Path(path)
|
|
|
|
|
|
|
|
if self.tagger:
|
|
|
|
self.tagger.model.end_training()
|
|
|
|
self.tagger.model.dump(str(path / 'pos' / 'model'))
|
2016-02-03 00:49:55 +03:00
|
|
|
if self.parser:
|
|
|
|
self.parser.model.end_training()
|
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:
|
|
|
|
self.entity.model.end_training()
|
2016-10-09 13:24:24 +03:00
|
|
|
self.entity.model.dump(str(path / 'ner' / 'model'))
|
|
|
|
|
2016-09-24 15:08:53 +03:00
|
|
|
strings_loc = path / 'vocab' / 'strings.json'
|
|
|
|
with strings_loc.open('w', encoding='utf8') as file_:
|
2015-10-22 13:13:03 +03:00
|
|
|
self.vocab.strings.dump(file_)
|
2016-09-24 15:08:53 +03:00
|
|
|
self.vocab.dump(path / 'vocab' / 'lexemes.bin')
|
2015-08-25 16:37:17 +03:00
|
|
|
|
2016-02-03 00:49:55 +03:00
|
|
|
if self.tagger:
|
|
|
|
tagger_freqs = list(self.tagger.freqs[TAG].items())
|
|
|
|
else:
|
|
|
|
tagger_freqs = []
|
|
|
|
if self.parser:
|
|
|
|
dep_freqs = list(self.parser.moves.freqs[DEP].items())
|
|
|
|
head_freqs = list(self.parser.moves.freqs[HEAD].items())
|
|
|
|
else:
|
|
|
|
dep_freqs = []
|
|
|
|
head_freqs = []
|
|
|
|
if self.entity:
|
|
|
|
entity_iob_freqs = list(self.entity.moves.freqs[ENT_IOB].items())
|
|
|
|
entity_type_freqs = list(self.entity.moves.freqs[ENT_TYPE].items())
|
|
|
|
else:
|
|
|
|
entity_iob_freqs = []
|
|
|
|
entity_type_freqs = []
|
2016-10-09 13:24:24 +03:00
|
|
|
with (path / 'vocab' / 'serializer.json').open('wb') as file_:
|
2015-08-25 16:37:17 +03:00
|
|
|
file_.write(
|
|
|
|
json.dumps([
|
2016-02-03 00:49:55 +03:00
|
|
|
(TAG, tagger_freqs),
|
|
|
|
(DEP, dep_freqs),
|
|
|
|
(ENT_IOB, entity_iob_freqs),
|
|
|
|
(ENT_TYPE, entity_type_freqs),
|
|
|
|
(HEAD, head_freqs)
|
|
|
|
]))
|
2016-09-24 15:08:53 +03:00
|
|
|
|
|
|
|
def get_defaults(self, path):
|
2016-09-24 21:26:17 +03:00
|
|
|
return self.Defaults(self.lang, path)
|