2016-02-01 10:34:55 +03:00
|
|
|
# cython: infer_types=True
|
2014-12-16 14:44:43 +03:00
|
|
|
"""
|
|
|
|
MALT-style dependency parser
|
|
|
|
"""
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
cimport cython
|
2016-02-05 14:20:42 +03:00
|
|
|
cimport cython.parallel
|
2015-06-10 05:20:23 +03:00
|
|
|
|
|
|
|
from cpython.ref cimport PyObject, Py_INCREF, Py_XDECREF
|
2016-01-16 18:18:44 +03:00
|
|
|
from cpython.exc cimport PyErr_CheckSignals
|
2015-06-10 05:20:23 +03:00
|
|
|
|
2014-12-19 01:30:50 +03:00
|
|
|
from libc.stdint cimport uint32_t, uint64_t
|
2015-06-02 19:38:41 +03:00
|
|
|
from libc.string cimport memset, memcpy
|
2016-02-01 10:34:55 +03:00
|
|
|
from libc.stdlib cimport malloc, calloc, free
|
2014-12-16 14:44:43 +03:00
|
|
|
import os.path
|
2014-12-31 11:40:59 +03:00
|
|
|
from os import path
|
2014-12-16 14:44:43 +03:00
|
|
|
import shutil
|
|
|
|
import json
|
2015-07-08 20:52:30 +03:00
|
|
|
import sys
|
2016-03-01 12:09:08 +03:00
|
|
|
from .nonproj import PseudoProjectivity
|
2014-12-16 14:44:43 +03:00
|
|
|
|
|
|
|
from cymem.cymem cimport Pool, Address
|
2014-12-19 01:30:50 +03:00
|
|
|
from murmurhash.mrmr cimport hash64
|
2015-06-08 15:49:04 +03:00
|
|
|
from thinc.typedefs cimport weight_t, class_t, feat_t, atom_t, hash_t
|
2016-01-30 16:31:12 +03:00
|
|
|
from thinc.linear.avgtron cimport AveragedPerceptron
|
|
|
|
from thinc.linalg cimport VecVec
|
2016-09-21 13:26:14 +03:00
|
|
|
from thinc.structs cimport SparseArrayC
|
2016-02-01 05:08:42 +03:00
|
|
|
from preshed.maps cimport MapStruct
|
|
|
|
from preshed.maps cimport map_get
|
2016-02-01 10:34:55 +03:00
|
|
|
from thinc.structs cimport FeatureC
|
2014-12-16 14:44:43 +03:00
|
|
|
|
|
|
|
from util import Config
|
|
|
|
|
2015-07-13 21:20:58 +03:00
|
|
|
from ..structs cimport TokenC
|
|
|
|
|
|
|
|
from ..tokens.doc cimport Doc
|
2015-03-14 18:06:35 +03:00
|
|
|
from ..strings cimport StringStore
|
2014-12-16 14:44:43 +03:00
|
|
|
|
2015-02-22 08:32:07 +03:00
|
|
|
from .transition_system import OracleError
|
2015-06-14 20:01:26 +03:00
|
|
|
from .transition_system cimport TransitionSystem, Transition
|
2014-12-16 14:44:43 +03:00
|
|
|
|
2015-05-24 22:35:02 +03:00
|
|
|
from ..gold cimport GoldParse
|
2014-12-16 14:44:43 +03:00
|
|
|
|
|
|
|
from . import _parse_features
|
2015-06-09 22:20:14 +03:00
|
|
|
from ._parse_features cimport CONTEXT_SIZE
|
2015-06-10 00:23:28 +03:00
|
|
|
from ._parse_features cimport fill_context
|
|
|
|
from .stateclass cimport StateClass
|
2016-02-01 10:34:55 +03:00
|
|
|
from ._state cimport StateC
|
2014-12-16 14:44:43 +03:00
|
|
|
|
|
|
|
|
2015-04-19 11:31:31 +03:00
|
|
|
DEBUG = False
|
2014-12-16 14:44:43 +03:00
|
|
|
def set_debug(val):
|
|
|
|
global DEBUG
|
|
|
|
DEBUG = val
|
|
|
|
|
|
|
|
|
|
|
|
def get_templates(name):
|
2014-12-17 13:09:29 +03:00
|
|
|
pf = _parse_features
|
2015-03-24 07:08:35 +03:00
|
|
|
if name == 'ner':
|
2015-03-10 20:00:23 +03:00
|
|
|
return pf.ner
|
2015-03-24 06:29:01 +03:00
|
|
|
elif name == 'debug':
|
|
|
|
return pf.unigrams
|
2015-06-28 12:36:11 +03:00
|
|
|
elif name.startswith('embed'):
|
2015-06-27 05:18:47 +03:00
|
|
|
return (pf.words, pf.tags, pf.labels)
|
2014-12-18 01:05:31 +03:00
|
|
|
else:
|
2015-06-14 22:17:39 +03:00
|
|
|
return (pf.unigrams + pf.s0_n0 + pf.s1_n0 + pf.s1_s0 + pf.s0_n1 + pf.n0_n1 + \
|
2015-02-21 07:30:31 +03:00
|
|
|
pf.tree_shape + pf.trigrams)
|
2014-12-16 14:44:43 +03:00
|
|
|
|
|
|
|
|
2015-07-08 13:35:46 +03:00
|
|
|
def ParserFactory(transition_system):
|
|
|
|
return lambda strings, dir_: Parser(strings, dir_, transition_system)
|
|
|
|
|
|
|
|
|
2016-09-21 13:26:14 +03:00
|
|
|
cdef class ParserModel(AveragedPerceptron):
|
2016-02-01 10:34:55 +03:00
|
|
|
cdef void set_featuresC(self, ExampleC* eg, const StateC* state) nogil:
|
|
|
|
fill_context(eg.atoms, state)
|
2015-11-06 19:24:30 +03:00
|
|
|
eg.nr_feat = self.extracter.set_features(eg.features, eg.atoms)
|
|
|
|
|
|
|
|
|
2015-06-02 01:28:02 +03:00
|
|
|
cdef class Parser:
|
2015-08-26 20:19:01 +03:00
|
|
|
@classmethod
|
2016-09-24 16:42:01 +03:00
|
|
|
def load(cls, path, Vocab vocab, moves_class):
|
2016-09-27 15:02:12 +03:00
|
|
|
with (path / 'config.json').open() as file_:
|
|
|
|
cfg = json.load(file_)
|
2016-09-24 16:42:01 +03:00
|
|
|
moves = moves_class(vocab.strings, cfg['labels'])
|
|
|
|
templates = get_templates(cfg['features'])
|
2016-09-21 13:26:14 +03:00
|
|
|
model = ParserModel(templates)
|
2016-09-24 16:42:01 +03:00
|
|
|
if (path / 'model').exists():
|
2016-09-24 21:26:17 +03:00
|
|
|
model.load(str(path / 'model'))
|
2016-09-24 16:42:01 +03:00
|
|
|
return cls(vocab, moves, model, **cfg)
|
2015-08-26 20:19:01 +03:00
|
|
|
|
2016-09-26 12:57:54 +03:00
|
|
|
@classmethod
|
|
|
|
def blank(cls, Vocab vocab, moves_class, **cfg):
|
|
|
|
moves = moves_class(vocab.strings, cfg.get('labels', {}))
|
2016-09-26 18:57:32 +03:00
|
|
|
templates = cfg.get('features', tuple())
|
2016-09-26 12:57:54 +03:00
|
|
|
model = ParserModel(templates)
|
|
|
|
return cls(vocab, moves, model, **cfg)
|
|
|
|
|
|
|
|
|
2016-09-24 16:42:01 +03:00
|
|
|
def __init__(self, Vocab vocab, transition_system, ParserModel model, **cfg):
|
|
|
|
self.moves = transition_system
|
|
|
|
self.model = model
|
|
|
|
self.cfg = cfg
|
2015-12-29 20:00:48 +03:00
|
|
|
|
2015-10-12 11:33:11 +03:00
|
|
|
def __reduce__(self):
|
2016-09-24 16:42:01 +03:00
|
|
|
return (Parser, (self.vocab, self.moves, self.model), None, None)
|
2015-10-12 11:33:11 +03:00
|
|
|
|
2015-11-06 19:24:30 +03:00
|
|
|
def __call__(self, Doc tokens):
|
2016-02-01 10:34:55 +03:00
|
|
|
cdef int nr_class = self.moves.n_moves
|
|
|
|
cdef int nr_feat = self.model.nr_feat
|
2016-01-30 22:27:07 +03:00
|
|
|
with nogil:
|
2016-09-27 20:09:37 +03:00
|
|
|
status = self.parseC(tokens.c, tokens.length, nr_feat, nr_class)
|
2016-01-30 22:27:07 +03:00
|
|
|
# Check for KeyboardInterrupt etc. Untested
|
|
|
|
PyErr_CheckSignals()
|
2016-09-27 20:09:37 +03:00
|
|
|
if status != 0:
|
2016-09-30 20:59:22 +03:00
|
|
|
raise ParserStateError(self.moves, tokens)
|
2016-05-02 15:25:10 +03:00
|
|
|
self.moves.finalize_doc(tokens)
|
2016-01-30 22:27:07 +03:00
|
|
|
|
2016-02-03 04:04:55 +03:00
|
|
|
def pipe(self, stream, int batch_size=1000, int n_threads=2):
|
|
|
|
cdef Pool mem = Pool()
|
|
|
|
cdef TokenC** doc_ptr = <TokenC**>mem.alloc(batch_size, sizeof(TokenC*))
|
|
|
|
cdef int* lengths = <int*>mem.alloc(batch_size, sizeof(int))
|
2016-02-01 10:34:55 +03:00
|
|
|
cdef Doc doc
|
|
|
|
cdef int i
|
|
|
|
cdef int nr_class = self.moves.n_moves
|
|
|
|
cdef int nr_feat = self.model.nr_feat
|
2016-02-06 12:06:13 +03:00
|
|
|
cdef int status
|
2016-02-03 04:04:55 +03:00
|
|
|
queue = []
|
|
|
|
for doc in stream:
|
|
|
|
doc_ptr[len(queue)] = doc.c
|
|
|
|
lengths[len(queue)] = doc.length
|
2016-02-05 21:37:50 +03:00
|
|
|
queue.append(doc)
|
2016-02-03 04:04:55 +03:00
|
|
|
if len(queue) == batch_size:
|
2016-02-06 12:06:13 +03:00
|
|
|
with nogil:
|
|
|
|
for i in cython.parallel.prange(batch_size, num_threads=n_threads):
|
|
|
|
status = self.parseC(doc_ptr[i], lengths[i], nr_feat, nr_class)
|
|
|
|
if status != 0:
|
|
|
|
with gil:
|
2016-09-27 20:19:53 +03:00
|
|
|
raise ParserStateError(queue[i])
|
2016-02-03 04:04:55 +03:00
|
|
|
PyErr_CheckSignals()
|
|
|
|
for doc in queue:
|
2016-05-02 15:25:10 +03:00
|
|
|
self.moves.finalize_doc(doc)
|
2016-02-03 04:04:55 +03:00
|
|
|
yield doc
|
|
|
|
queue = []
|
|
|
|
batch_size = len(queue)
|
2016-02-06 12:06:13 +03:00
|
|
|
with nogil:
|
|
|
|
for i in cython.parallel.prange(batch_size, num_threads=n_threads):
|
|
|
|
status = self.parseC(doc_ptr[i], lengths[i], nr_feat, nr_class)
|
|
|
|
if status != 0:
|
|
|
|
with gil:
|
2016-09-27 20:19:53 +03:00
|
|
|
raise ParserStateError(queue[i])
|
2016-03-16 17:53:35 +03:00
|
|
|
PyErr_CheckSignals()
|
2016-02-06 12:06:13 +03:00
|
|
|
for doc in queue:
|
2016-05-02 15:25:10 +03:00
|
|
|
self.moves.finalize_doc(doc)
|
2016-02-06 12:06:13 +03:00
|
|
|
yield doc
|
2016-03-16 17:53:35 +03:00
|
|
|
|
2016-09-21 13:26:14 +03:00
|
|
|
cdef int parseC(self, TokenC* tokens, int length, int nr_feat, int nr_class) nogil:
|
|
|
|
cdef ExampleC eg
|
|
|
|
eg.nr_feat = nr_feat
|
|
|
|
eg.nr_atom = CONTEXT_SIZE
|
|
|
|
eg.nr_class = nr_class
|
|
|
|
eg.features = <FeatureC*>calloc(sizeof(FeatureC), nr_feat)
|
|
|
|
eg.atoms = <atom_t*>calloc(sizeof(atom_t), CONTEXT_SIZE)
|
|
|
|
eg.scores = <weight_t*>calloc(sizeof(weight_t), nr_class)
|
|
|
|
eg.is_valid = <int*>calloc(sizeof(int), nr_class)
|
2016-02-01 10:34:55 +03:00
|
|
|
state = new StateC(tokens, length)
|
|
|
|
self.moves.initialize_state(state)
|
|
|
|
cdef int i
|
|
|
|
while not state.is_final():
|
2016-09-21 13:26:14 +03:00
|
|
|
self.model.set_featuresC(&eg, state)
|
2016-02-01 10:34:55 +03:00
|
|
|
self.moves.set_valid(eg.is_valid, state)
|
2016-09-21 13:26:14 +03:00
|
|
|
self.model.set_scoresC(eg.scores, eg.features, eg.nr_feat)
|
2016-02-01 10:34:55 +03:00
|
|
|
|
|
|
|
guess = VecVec.arg_max_if_true(eg.scores, eg.is_valid, eg.nr_class)
|
2016-01-30 16:31:12 +03:00
|
|
|
|
|
|
|
action = self.moves.c[guess]
|
2016-02-01 10:34:55 +03:00
|
|
|
if not eg.is_valid[guess]:
|
2016-04-13 16:28:28 +03:00
|
|
|
return 1
|
|
|
|
|
2016-02-01 10:34:55 +03:00
|
|
|
action.do(state, action.label)
|
2016-09-21 13:26:14 +03:00
|
|
|
memset(eg.scores, 0, sizeof(eg.scores[0]) * eg.nr_class)
|
|
|
|
for i in range(eg.nr_class):
|
|
|
|
eg.is_valid[i] = 1
|
2016-02-01 10:34:55 +03:00
|
|
|
self.moves.finalize_state(state)
|
|
|
|
for i in range(length):
|
|
|
|
tokens[i] = state._sent[i]
|
|
|
|
del state
|
2016-09-21 13:26:14 +03:00
|
|
|
free(eg.features)
|
|
|
|
free(eg.atoms)
|
|
|
|
free(eg.scores)
|
|
|
|
free(eg.is_valid)
|
2016-02-06 12:06:13 +03:00
|
|
|
return 0
|
2015-11-06 19:24:30 +03:00
|
|
|
|
2015-07-14 15:11:23 +03:00
|
|
|
def train(self, Doc tokens, GoldParse gold):
|
2015-06-02 02:34:19 +03:00
|
|
|
self.moves.preprocess_gold(gold)
|
2015-11-03 16:15:14 +03:00
|
|
|
cdef StateClass stcls = StateClass.init(tokens.c, tokens.length)
|
2016-02-01 10:34:55 +03:00
|
|
|
self.moves.initialize_state(stcls.c)
|
2015-11-06 19:24:30 +03:00
|
|
|
cdef Pool mem = Pool()
|
2016-01-30 16:31:12 +03:00
|
|
|
cdef Example eg = Example(
|
|
|
|
nr_class=self.moves.n_moves,
|
|
|
|
nr_atom=CONTEXT_SIZE,
|
|
|
|
nr_feat=self.model.nr_feat)
|
2015-06-30 15:26:32 +03:00
|
|
|
cdef weight_t loss = 0
|
2015-11-06 19:24:30 +03:00
|
|
|
cdef Transition action
|
2015-06-10 02:35:28 +03:00
|
|
|
while not stcls.is_final():
|
2016-09-21 13:26:14 +03:00
|
|
|
self.model.set_featuresC(&eg.c, stcls.c)
|
2016-01-30 16:31:12 +03:00
|
|
|
self.moves.set_costs(eg.c.is_valid, eg.c.costs, stcls, gold)
|
2016-09-21 13:26:14 +03:00
|
|
|
self.model.set_scoresC(eg.c.scores, eg.c.features, eg.c.nr_feat)
|
|
|
|
self.model.updateC(&eg.c)
|
|
|
|
guess = VecVec.arg_max_if_true(eg.c.scores, eg.c.is_valid, eg.c.nr_class)
|
|
|
|
|
2015-11-06 19:24:30 +03:00
|
|
|
action = self.moves.c[eg.guess]
|
2016-02-01 04:58:14 +03:00
|
|
|
action.do(stcls.c, action.label)
|
2016-09-21 13:26:14 +03:00
|
|
|
loss += eg.costs[eg.guess]
|
|
|
|
eg.fill_scores(0, eg.nr_class)
|
|
|
|
eg.fill_costs(0, eg.nr_class)
|
|
|
|
eg.fill_is_valid(0, eg.nr_class)
|
2015-06-30 15:26:32 +03:00
|
|
|
return loss
|
2015-08-10 01:08:46 +03:00
|
|
|
|
|
|
|
def step_through(self, Doc doc):
|
|
|
|
return StepwiseState(self, doc)
|
|
|
|
|
2016-05-03 15:24:35 +03:00
|
|
|
def from_transition_sequence(self, Doc doc, sequence):
|
|
|
|
with self.step_through(doc) as stepwise:
|
|
|
|
for transition in sequence:
|
|
|
|
stepwise.transition(transition)
|
|
|
|
|
2016-01-19 21:11:02 +03:00
|
|
|
def add_label(self, label):
|
|
|
|
for action in self.moves.action_types:
|
|
|
|
self.moves.add_action(action, label)
|
|
|
|
|
2015-08-10 01:08:46 +03:00
|
|
|
|
|
|
|
cdef class StepwiseState:
|
|
|
|
cdef readonly StateClass stcls
|
|
|
|
cdef readonly Example eg
|
|
|
|
cdef readonly Doc doc
|
|
|
|
cdef readonly Parser parser
|
|
|
|
|
|
|
|
def __init__(self, Parser parser, Doc doc):
|
|
|
|
self.parser = parser
|
|
|
|
self.doc = doc
|
2015-11-03 16:15:14 +03:00
|
|
|
self.stcls = StateClass.init(doc.c, doc.length)
|
2016-02-01 10:34:55 +03:00
|
|
|
self.parser.moves.initialize_state(self.stcls.c)
|
2016-01-30 16:31:12 +03:00
|
|
|
self.eg = Example(
|
|
|
|
nr_class=self.parser.moves.n_moves,
|
|
|
|
nr_atom=CONTEXT_SIZE,
|
|
|
|
nr_feat=self.parser.model.nr_feat)
|
2015-08-10 01:08:46 +03:00
|
|
|
|
|
|
|
def __enter__(self):
|
|
|
|
return self
|
|
|
|
|
|
|
|
def __exit__(self, type, value, traceback):
|
|
|
|
self.finish()
|
|
|
|
|
|
|
|
@property
|
|
|
|
def is_final(self):
|
|
|
|
return self.stcls.is_final()
|
|
|
|
|
|
|
|
@property
|
|
|
|
def stack(self):
|
|
|
|
return self.stcls.stack
|
|
|
|
|
|
|
|
@property
|
|
|
|
def queue(self):
|
|
|
|
return self.stcls.queue
|
|
|
|
|
|
|
|
@property
|
|
|
|
def heads(self):
|
2016-04-13 16:28:28 +03:00
|
|
|
return [self.stcls.H(i) for i in range(self.stcls.c.length)]
|
2015-08-10 01:08:46 +03:00
|
|
|
|
|
|
|
@property
|
|
|
|
def deps(self):
|
2016-02-01 04:22:21 +03:00
|
|
|
return [self.doc.vocab.strings[self.stcls.c._sent[i].dep]
|
2016-04-13 16:28:28 +03:00
|
|
|
for i in range(self.stcls.c.length)]
|
2015-08-10 01:08:46 +03:00
|
|
|
|
|
|
|
def predict(self):
|
2016-01-30 16:31:12 +03:00
|
|
|
self.eg.reset()
|
2016-09-21 13:26:14 +03:00
|
|
|
self.parser.model.set_featuresC(&self.eg.c, self.stcls.c)
|
2016-02-01 05:00:15 +03:00
|
|
|
self.parser.moves.set_valid(self.eg.c.is_valid, self.stcls.c)
|
2016-01-30 16:31:12 +03:00
|
|
|
self.parser.model.set_scoresC(self.eg.c.scores,
|
2016-09-21 13:26:14 +03:00
|
|
|
self.eg.c.features, self.eg.c.nr_feat)
|
2015-11-06 19:24:30 +03:00
|
|
|
|
2016-01-30 16:31:12 +03:00
|
|
|
cdef Transition action = self.parser.moves.c[self.eg.guess]
|
2015-08-10 01:08:46 +03:00
|
|
|
return self.parser.moves.move_name(action.move, action.label)
|
|
|
|
|
|
|
|
def transition(self, action_name):
|
2015-08-10 06:05:31 +03:00
|
|
|
moves = {'S': 0, 'D': 1, 'L': 2, 'R': 3}
|
2015-08-10 01:08:46 +03:00
|
|
|
if action_name == '_':
|
|
|
|
action_name = self.predict()
|
2015-08-10 06:58:43 +03:00
|
|
|
action = self.parser.moves.lookup_transition(action_name)
|
|
|
|
elif action_name == 'L' or action_name == 'R':
|
2015-08-10 06:05:31 +03:00
|
|
|
self.predict()
|
|
|
|
move = moves[action_name]
|
|
|
|
clas = _arg_max_clas(self.eg.c.scores, move, self.parser.moves.c,
|
|
|
|
self.eg.c.nr_class)
|
|
|
|
action = self.parser.moves.c[clas]
|
|
|
|
else:
|
|
|
|
action = self.parser.moves.lookup_transition(action_name)
|
2016-02-01 04:58:14 +03:00
|
|
|
action.do(self.stcls.c, action.label)
|
2015-08-10 01:08:46 +03:00
|
|
|
|
|
|
|
def finish(self):
|
|
|
|
if self.stcls.is_final():
|
2016-02-01 10:34:55 +03:00
|
|
|
self.parser.moves.finalize_state(self.stcls.c)
|
2016-02-01 04:22:21 +03:00
|
|
|
self.doc.set_parse(self.stcls.c._sent)
|
2016-05-02 15:25:10 +03:00
|
|
|
self.parser.moves.finalize_doc(self.doc)
|
2015-08-10 06:05:31 +03:00
|
|
|
|
|
|
|
|
2016-09-27 20:19:53 +03:00
|
|
|
class ParserStateError(ValueError):
|
2016-09-30 20:59:22 +03:00
|
|
|
def __init__(self, TransitionSystem moves, doc):
|
|
|
|
actions = [moves.move_name(moves.c[i].move, moves.c[i].label) for i
|
|
|
|
in range(moves.n_moves)]
|
|
|
|
ValueError.__init__(self,
|
2016-09-27 20:19:53 +03:00
|
|
|
"Error analysing doc -- no valid actions available. This should "
|
|
|
|
"never happen, so please report the error on the issue tracker. "
|
|
|
|
"Here's the thread to do so --- reopen it if it's closed:\n"
|
|
|
|
"https://github.com/spacy-io/spaCy/issues/429\n"
|
|
|
|
"Please include the text that the parser failed on, which is:\n"
|
2016-09-30 20:59:22 +03:00
|
|
|
"'%s'\nAnd the list of actions, which is:%s\n" % (doc.text, actions))
|
2016-09-27 20:19:53 +03:00
|
|
|
|
|
|
|
|
2015-08-10 06:05:31 +03:00
|
|
|
cdef int _arg_max_clas(const weight_t* scores, int move, const Transition* actions,
|
|
|
|
int nr_class) except -1:
|
|
|
|
cdef weight_t score = 0
|
|
|
|
cdef int mode = -1
|
|
|
|
cdef int i
|
|
|
|
for i in range(nr_class):
|
|
|
|
if actions[i].move == move and (mode == -1 or scores[i] >= score):
|
2015-08-10 06:58:43 +03:00
|
|
|
mode = i
|
2015-08-10 06:05:31 +03:00
|
|
|
score = scores[i]
|
|
|
|
return mode
|