2015-06-02 19:38:41 +03:00
|
|
|
# cython: profile=True
|
2015-06-09 22:20:14 +03:00
|
|
|
# cython: experimental_cpp_class_def=True
|
2014-12-16 14:44:43 +03:00
|
|
|
"""
|
|
|
|
MALT-style dependency parser
|
|
|
|
"""
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
cimport cython
|
2015-06-10 05:20:23 +03:00
|
|
|
|
|
|
|
from cpython.ref cimport PyObject, Py_INCREF, Py_XDECREF
|
|
|
|
|
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
|
2014-12-16 14:44:43 +03:00
|
|
|
import random
|
|
|
|
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
|
|
|
|
|
|
|
|
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
|
2014-12-16 14:44:43 +03:00
|
|
|
|
|
|
|
|
|
|
|
from util import Config
|
|
|
|
|
|
|
|
from thinc.features cimport Extractor
|
|
|
|
from thinc.features cimport Feature
|
|
|
|
from thinc.features cimport count_feats
|
|
|
|
|
|
|
|
from thinc.learner cimport LinearModel
|
|
|
|
|
2015-06-02 01:28:02 +03:00
|
|
|
from thinc.search cimport Beam
|
|
|
|
from thinc.search cimport MaxViolation
|
|
|
|
|
2014-12-16 14:44:43 +03:00
|
|
|
from ..tokens cimport Tokens, TokenC
|
2015-03-14 18:06:35 +03:00
|
|
|
from ..strings cimport StringStore
|
2014-12-16 14:44:43 +03:00
|
|
|
|
2014-12-18 03:33:25 +03:00
|
|
|
from .arc_eager cimport TransitionSystem, Transition
|
2015-02-22 08:32:07 +03:00
|
|
|
from .transition_system import OracleError
|
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
|
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
|
2014-12-18 01:05:31 +03:00
|
|
|
else:
|
2015-02-21 07:30:31 +03:00
|
|
|
return (pf.unigrams + pf.s0_n0 + pf.s1_n0 + pf.s0_n1 + pf.n0_n1 + \
|
|
|
|
pf.tree_shape + pf.trigrams)
|
2014-12-16 14:44:43 +03:00
|
|
|
|
|
|
|
|
2015-06-02 01:28:02 +03:00
|
|
|
cdef class Parser:
|
2015-03-14 18:06:35 +03:00
|
|
|
def __init__(self, StringStore strings, model_dir, transition_system):
|
2014-12-16 14:44:43 +03:00
|
|
|
assert os.path.exists(model_dir) and os.path.isdir(model_dir)
|
|
|
|
self.cfg = Config.read(model_dir, 'config')
|
2015-03-14 18:06:35 +03:00
|
|
|
self.moves = transition_system(strings, self.cfg.labels)
|
2015-02-21 07:30:31 +03:00
|
|
|
templates = get_templates(self.cfg.features)
|
|
|
|
self.model = Model(self.moves.n_moves, templates, model_dir)
|
2014-12-16 14:44:43 +03:00
|
|
|
|
2015-01-17 08:21:17 +03:00
|
|
|
def __call__(self, Tokens tokens):
|
2015-02-10 18:15:58 +03:00
|
|
|
if tokens.length == 0:
|
|
|
|
return 0
|
2015-06-08 15:49:04 +03:00
|
|
|
if self.cfg.get('beam_width', 1) < 1:
|
2015-06-02 02:34:19 +03:00
|
|
|
self._greedy_parse(tokens)
|
2015-06-02 01:28:02 +03:00
|
|
|
else:
|
2015-06-02 02:34:19 +03:00
|
|
|
self._beam_parse(tokens)
|
|
|
|
|
|
|
|
def train(self, Tokens tokens, GoldParse gold):
|
|
|
|
self.moves.preprocess_gold(gold)
|
2015-06-08 15:49:04 +03:00
|
|
|
if self.cfg.beam_width < 1:
|
2015-06-02 02:34:19 +03:00
|
|
|
return self._greedy_train(tokens, gold)
|
|
|
|
else:
|
|
|
|
return self._beam_train(tokens, gold)
|
2015-02-10 18:15:58 +03:00
|
|
|
|
2015-06-02 02:34:19 +03:00
|
|
|
cdef int _greedy_parse(self, Tokens tokens) except -1:
|
2014-12-16 14:44:43 +03:00
|
|
|
cdef atom_t[CONTEXT_SIZE] context
|
|
|
|
cdef int n_feats
|
|
|
|
cdef Pool mem = Pool()
|
2015-06-10 03:03:38 +03:00
|
|
|
cdef StateClass stcls = StateClass.init(tokens.data, tokens.length)
|
|
|
|
self.moves.initialize_state(stcls)
|
2015-02-21 07:30:31 +03:00
|
|
|
cdef Transition guess
|
2015-06-10 02:35:28 +03:00
|
|
|
words = [w.orth_ for w in tokens]
|
|
|
|
while not stcls.is_final():
|
|
|
|
#print stcls.print_state(words)
|
2015-06-10 02:39:07 +03:00
|
|
|
fill_context(context, stcls)
|
2015-06-02 01:28:02 +03:00
|
|
|
scores = self.model.score(context)
|
2015-06-10 00:23:28 +03:00
|
|
|
guess = self.moves.best_valid(scores, stcls)
|
2015-06-10 02:35:28 +03:00
|
|
|
guess.do(stcls, guess.label)
|
|
|
|
self.moves.finalize_state(stcls)
|
|
|
|
tokens.set_parse(stcls._sent)
|
2015-06-02 01:28:02 +03:00
|
|
|
|
2015-06-02 02:34:19 +03:00
|
|
|
cdef int _beam_parse(self, Tokens tokens) except -1:
|
2015-06-02 03:01:33 +03:00
|
|
|
cdef Beam beam = Beam(self.moves.n_moves, self.cfg.beam_width)
|
2015-06-02 01:28:02 +03:00
|
|
|
beam.initialize(_init_state, tokens.length, tokens.data)
|
2015-06-07 20:12:59 +03:00
|
|
|
beam.check_done(_check_final_state, NULL)
|
2015-06-02 01:28:02 +03:00
|
|
|
while not beam.is_done:
|
|
|
|
self._advance_beam(beam, None, False)
|
2015-06-10 03:03:38 +03:00
|
|
|
state = <StateClass>beam.at(0)
|
2015-06-10 05:20:23 +03:00
|
|
|
self.moves.finalize_state(state)
|
|
|
|
tokens.set_parse(state._sent)
|
|
|
|
_cleanup(beam)
|
2015-06-02 01:28:02 +03:00
|
|
|
|
|
|
|
def _greedy_train(self, Tokens tokens, GoldParse gold):
|
2014-12-16 14:44:43 +03:00
|
|
|
cdef Pool mem = Pool()
|
2015-06-10 03:03:38 +03:00
|
|
|
cdef StateClass stcls = StateClass.init(tokens.data, tokens.length)
|
|
|
|
self.moves.initialize_state(stcls)
|
2015-03-24 07:11:37 +03:00
|
|
|
|
|
|
|
cdef int cost
|
|
|
|
cdef const Feature* feats
|
|
|
|
cdef const weight_t* scores
|
|
|
|
cdef Transition guess
|
|
|
|
cdef Transition best
|
|
|
|
cdef atom_t[CONTEXT_SIZE] context
|
2015-05-24 22:35:02 +03:00
|
|
|
loss = 0
|
2015-06-10 02:35:28 +03:00
|
|
|
words = [w.orth_ for w in tokens]
|
|
|
|
while not stcls.is_final():
|
2015-06-10 02:39:07 +03:00
|
|
|
fill_context(context, stcls)
|
2015-06-02 01:28:02 +03:00
|
|
|
scores = self.model.score(context)
|
2015-06-10 00:23:28 +03:00
|
|
|
guess = self.moves.best_valid(scores, stcls)
|
2015-06-10 01:40:43 +03:00
|
|
|
best = self.moves.best_gold(scores, stcls, gold)
|
|
|
|
cost = guess.get_cost(stcls, &gold.c, guess.label)
|
2015-02-21 07:30:31 +03:00
|
|
|
self.model.update(context, guess.clas, best.clas, cost)
|
2015-06-10 02:35:28 +03:00
|
|
|
guess.do(stcls, guess.label)
|
2015-05-24 22:35:02 +03:00
|
|
|
loss += cost
|
|
|
|
return loss
|
2015-06-02 01:28:02 +03:00
|
|
|
|
|
|
|
def _beam_train(self, Tokens tokens, GoldParse gold_parse):
|
2015-06-02 03:01:33 +03:00
|
|
|
cdef Beam pred = Beam(self.moves.n_moves, self.cfg.beam_width)
|
2015-06-02 01:28:02 +03:00
|
|
|
pred.initialize(_init_state, tokens.length, tokens.data)
|
2015-06-07 20:12:59 +03:00
|
|
|
pred.check_done(_check_final_state, NULL)
|
2015-06-02 03:01:33 +03:00
|
|
|
cdef Beam gold = Beam(self.moves.n_moves, self.cfg.beam_width)
|
2015-06-02 01:28:02 +03:00
|
|
|
gold.initialize(_init_state, tokens.length, tokens.data)
|
2015-06-07 20:12:59 +03:00
|
|
|
gold.check_done(_check_final_state, NULL)
|
2015-06-02 01:28:02 +03:00
|
|
|
|
|
|
|
violn = MaxViolation()
|
|
|
|
while not pred.is_done and not gold.is_done:
|
|
|
|
self._advance_beam(pred, gold_parse, False)
|
|
|
|
self._advance_beam(gold, gold_parse, True)
|
|
|
|
violn.check(pred, gold)
|
2015-06-02 19:38:41 +03:00
|
|
|
if pred.loss >= 1:
|
2015-06-04 22:15:14 +03:00
|
|
|
counts = {clas: {} for clas in range(self.model.n_classes)}
|
2015-06-02 01:28:02 +03:00
|
|
|
self._count_feats(counts, tokens, violn.g_hist, 1)
|
|
|
|
self._count_feats(counts, tokens, violn.p_hist, -1)
|
2015-06-04 22:15:14 +03:00
|
|
|
else:
|
|
|
|
counts = {}
|
2015-06-02 01:28:02 +03:00
|
|
|
self.model._model.update(counts)
|
2015-06-10 05:20:23 +03:00
|
|
|
_cleanup(pred)
|
|
|
|
_cleanup(gold)
|
2015-06-02 19:38:41 +03:00
|
|
|
return pred.loss
|
2015-06-02 01:28:02 +03:00
|
|
|
|
|
|
|
def _advance_beam(self, Beam beam, GoldParse gold, bint follow_gold):
|
|
|
|
cdef atom_t[CONTEXT_SIZE] context
|
|
|
|
cdef int i, j, cost
|
|
|
|
cdef bint is_valid
|
|
|
|
cdef const Transition* move
|
|
|
|
for i in range(beam.size):
|
2015-06-10 03:03:38 +03:00
|
|
|
stcls = <StateClass>beam.at(i)
|
|
|
|
if not stcls.is_final():
|
2015-06-10 02:39:07 +03:00
|
|
|
fill_context(context, stcls)
|
2015-06-07 20:12:59 +03:00
|
|
|
self.model.set_scores(beam.scores[i], context)
|
2015-06-10 00:23:28 +03:00
|
|
|
self.moves.set_valid(beam.is_valid[i], stcls)
|
2015-06-04 22:15:14 +03:00
|
|
|
if gold is not None:
|
2015-06-02 19:38:41 +03:00
|
|
|
for i in range(beam.size):
|
2015-06-10 03:03:38 +03:00
|
|
|
stcls = <StateClass>beam.at(i)
|
2015-06-10 01:40:43 +03:00
|
|
|
self.moves.set_costs(beam.costs[i], stcls, gold)
|
2015-06-04 22:15:14 +03:00
|
|
|
if follow_gold:
|
2015-06-10 05:20:23 +03:00
|
|
|
n_true = 0
|
2015-06-04 22:15:14 +03:00
|
|
|
for j in range(self.moves.n_moves):
|
2015-06-05 03:27:17 +03:00
|
|
|
beam.is_valid[i][j] *= beam.costs[i][j] == 0
|
2015-06-10 05:20:23 +03:00
|
|
|
n_true += beam.is_valid[i][j]
|
|
|
|
assert n_true >= 1
|
|
|
|
beam.advance(_transition_state, _hash_state, <void*>self.moves.c)
|
2015-06-02 01:28:02 +03:00
|
|
|
beam.check_done(_check_final_state, NULL)
|
|
|
|
|
|
|
|
def _count_feats(self, dict counts, Tokens tokens, list hist, int inc):
|
|
|
|
cdef atom_t[CONTEXT_SIZE] context
|
|
|
|
cdef Pool mem = Pool()
|
2015-06-10 03:03:38 +03:00
|
|
|
cdef StateClass stcls = StateClass.init(tokens.data, tokens.length)
|
|
|
|
self.moves.initialize_state(stcls)
|
2015-06-02 01:28:02 +03:00
|
|
|
|
|
|
|
cdef class_t clas
|
|
|
|
cdef int n_feats
|
|
|
|
for clas in hist:
|
2015-06-10 02:39:07 +03:00
|
|
|
fill_context(context, stcls)
|
2015-06-02 01:28:02 +03:00
|
|
|
feats = self.model._extractor.get_feats(context, &n_feats)
|
2015-06-04 22:15:14 +03:00
|
|
|
count_feats(counts[clas], feats, n_feats, inc)
|
2015-06-10 02:35:28 +03:00
|
|
|
self.moves.c[clas].do(stcls, self.moves.c[clas].label)
|
2015-06-02 01:28:02 +03:00
|
|
|
|
|
|
|
|
|
|
|
# These are passed as callbacks to thinc.search.Beam
|
|
|
|
|
|
|
|
cdef int _transition_state(void* _dest, void* _src, class_t clas, void* _moves) except -1:
|
2015-06-10 03:03:38 +03:00
|
|
|
dest = <StateClass>_dest
|
|
|
|
src = <StateClass>_src
|
2015-06-02 01:28:02 +03:00
|
|
|
moves = <const Transition*>_moves
|
2015-06-10 03:03:38 +03:00
|
|
|
dest.clone(src)
|
|
|
|
moves[clas].do(dest, moves[clas].label)
|
2015-06-02 01:28:02 +03:00
|
|
|
|
|
|
|
|
|
|
|
cdef void* _init_state(Pool mem, int length, void* tokens) except NULL:
|
2015-06-10 03:03:38 +03:00
|
|
|
cdef StateClass st = StateClass.init(<const TokenC*>tokens, length)
|
2015-06-10 05:20:23 +03:00
|
|
|
Py_INCREF(st)
|
2015-06-10 03:03:38 +03:00
|
|
|
return <void*>st
|
2015-06-02 01:28:02 +03:00
|
|
|
|
|
|
|
|
2015-06-10 03:03:38 +03:00
|
|
|
cdef int _check_final_state(void* _state, void* extra_args) except -1:
|
|
|
|
return (<StateClass>_state).is_final()
|
2015-06-08 15:49:04 +03:00
|
|
|
|
|
|
|
|
2015-06-10 05:20:23 +03:00
|
|
|
def _cleanup(Beam beam):
|
|
|
|
for i in range(beam.width):
|
|
|
|
Py_XDECREF(<PyObject*>beam._states[i].content)
|
|
|
|
Py_XDECREF(<PyObject*>beam._parents[i].content)
|
|
|
|
|
2015-06-08 15:49:04 +03:00
|
|
|
cdef hash_t _hash_state(void* _state, void* _) except 0:
|
2015-06-10 05:20:23 +03:00
|
|
|
return <hash_t>_state
|
|
|
|
|
|
|
|
#state = <const State*>_state
|
|
|
|
#cdef atom_t[10] rep
|
|
|
|
|
|
|
|
#rep[0] = state.stack[0] if state.stack_len >= 1 else 0
|
|
|
|
#rep[1] = state.stack[-1] if state.stack_len >= 2 else 0
|
|
|
|
#rep[2] = state.stack[-2] if state.stack_len >= 3 else 0
|
|
|
|
#rep[3] = state.i
|
|
|
|
#rep[4] = state.sent[state.stack[0]].l_kids if state.stack_len >= 1 else 0
|
|
|
|
#rep[5] = state.sent[state.stack[0]].r_kids if state.stack_len >= 1 else 0
|
|
|
|
#rep[6] = state.sent[state.stack[0]].dep if state.stack_len >= 1 else 0
|
|
|
|
#rep[7] = state.sent[state.stack[-1]].dep if state.stack_len >= 2 else 0
|
|
|
|
#if get_left(state, get_n0(state), 1) != NULL:
|
|
|
|
# rep[8] = get_left(state, get_n0(state), 1).dep
|
|
|
|
#else:
|
|
|
|
# rep[8] = 0
|
|
|
|
#rep[9] = state.sent[state.i].l_kids
|
|
|
|
#return hash64(rep, sizeof(atom_t) * 10, 0)
|