spaCy/spacy/syntax/parser.pyx

121 lines
3.7 KiB
Cython
Raw Normal View History

2014-12-16 14:44:43 +03:00
"""
MALT-style dependency parser
"""
from __future__ import unicode_literals
cimport cython
from libc.stdint cimport uint32_t, uint64_t
2014-12-16 14:44:43 +03:00
import random
import os.path
from os import path
2014-12-16 14:44:43 +03:00
import shutil
import json
from cymem.cymem cimport Pool, Address
from murmurhash.mrmr cimport hash64
2014-12-16 14:44:43 +03:00
from thinc.typedefs cimport weight_t, class_t, feat_t, atom_t
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
from ..tokens cimport Tokens, TokenC
from .arc_eager cimport TransitionSystem, Transition
from .transition_system import OracleError
2014-12-16 14:44:43 +03:00
from ._state cimport init_state, State, is_final, get_idx, get_s0, get_s1, get_n0, get_n1
from .conll cimport GoldParse
2014-12-16 14:44:43 +03:00
from . import _parse_features
from ._parse_features cimport fill_context, CONTEXT_SIZE
from ._ner_features cimport _ner_features
2014-12-16 14:44:43 +03:00
DEBUG = False
def set_debug(val):
global DEBUG
DEBUG = val
cdef unicode print_state(State* s, list words):
words = list(words) + ['EOL']
2015-01-28 19:18:29 +03:00
top = words[s.stack[0]] + '_%d' % s.sent[s.stack[0]].head
second = words[s.stack[-1]] + '_%d' % s.sent[s.stack[-1]].head
third = words[s.stack[-2]] + '_%d' % s.sent[s.stack[-2]].head
2014-12-16 14:44:43 +03:00
n0 = words[s.i]
n1 = words[s.i + 1]
2015-01-28 19:18:29 +03:00
return ' '.join((str(s.stack_len), third, second, top, '|', n0, n1))
2014-12-16 14:44:43 +03:00
def get_templates(name):
2014-12-17 13:09:29 +03:00
pf = _parse_features
if name == 'zhang':
return pf.arc_eager
elif name == 'ner':
return _ner_features.basic
else:
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
cdef class GreedyParser:
def __init__(self, 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')
self.moves = transition_system(self.cfg.labels)
templates = get_templates(self.cfg.features)
self.model = Model(self.moves.n_moves, templates, model_dir)
2014-12-16 14:44:43 +03:00
def __call__(self, Tokens tokens):
if tokens.length == 0:
return 0
2014-12-16 14:44:43 +03:00
cdef atom_t[CONTEXT_SIZE] context
cdef int n_feats
cdef Pool mem = Pool()
cdef State* state = init_state(mem, tokens.data, tokens.length)
cdef Transition guess
2014-12-16 14:44:43 +03:00
while not is_final(state):
fill_context(context, state)
scores = self.model.score(context)
guess = self.moves.best_valid(scores, state)
2015-02-18 12:41:06 +03:00
guess.do(&guess, state)
tokens.set_parse(state.sent, self.moves.label_ids)
2014-12-17 13:09:29 +03:00
return 0
2014-12-16 14:44:43 +03:00
def train(self, Tokens tokens, GoldParse gold, force_gold=False):
2014-12-16 14:44:43 +03:00
cdef:
int n_feats
int cost
const Feature* feats
const weight_t* scores
Transition guess
Transition best
atom_t[CONTEXT_SIZE] context
self.moves.preprocess_gold(gold)
2014-12-16 14:44:43 +03:00
cdef Pool mem = Pool()
cdef State* state = init_state(mem, tokens.data, tokens.length)
while not is_final(state):
fill_context(context, state)
scores = self.model.score(context)
2014-12-16 14:44:43 +03:00
guess = self.moves.best_valid(scores, state)
best = self.moves.best_gold(scores, state, gold)
cost = guess.get_cost(&guess, state, gold)
self.model.update(context, guess.clas, best.clas, cost)
2015-01-28 19:18:29 +03:00
if force_gold:
2015-02-18 12:41:06 +03:00
best.do(&best, state)
2015-01-28 19:18:29 +03:00
else:
2015-02-18 12:41:06 +03:00
guess.do(&guess, state)
2015-03-08 08:14:06 +03:00
n_corr = gold.heads_correct(state.sent, score_punct=True)
2015-01-28 19:18:29 +03:00
if force_gold and n_corr != tokens.length:
2015-02-02 15:02:04 +03:00
raise OracleError
2014-12-16 14:44:43 +03:00
return n_corr