spaCy/spacy/syntax/parser.pyx

141 lines
4.8 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
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
2014-12-16 14:44:43 +03:00
from . import _parse_features
from ._parse_features cimport fill_context, CONTEXT_SIZE
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.unigrams, pf.arc_eager
else:
2015-01-05 09:54:13 +03:00
return pf.unigrams, (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):
assert os.path.exists(model_dir) and os.path.isdir(model_dir)
self.cfg = Config.read(model_dir, 'config')
self.moves = TransitionSystem(self.cfg.left_labels, self.cfg.right_labels)
hasty_templ, full_templ = get_templates(self.cfg.features)
2015-01-07 17:19:23 +03:00
self.model = Model(self.moves.n_moves, full_templ, model_dir)
2014-12-16 14:44:43 +03:00
def __call__(self, Tokens tokens):
2014-12-16 14:44:43 +03:00
cdef:
Transition guess
uint64_t state_key
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)
while not is_final(state):
fill_context(context, state)
scores = self.model.score(context)
guess = self.moves.best_valid(scores, state)
self.moves.transition(state, &guess)
# Messily tell Tokens object the string names of the dependency labels
tokens._dep_strings = [None] * len(self.moves.label_ids)
for label, id_ in self.moves.label_ids.items():
tokens._dep_strings[id_] = label
tokens.is_parsed = True
2014-12-17 13:09:29 +03:00
return 0
2014-12-16 14:44:43 +03:00
2015-01-28 19:18:29 +03:00
def train_sent(self, Tokens tokens, list gold_heads, list gold_labels,
force_gold=False):
2014-12-16 14:44:43 +03:00
cdef:
const Feature* feats
const weight_t* scores
Transition guess
Transition gold
2014-12-16 14:44:43 +03:00
cdef int n_feats
cdef atom_t[CONTEXT_SIZE] context
cdef Pool mem = Pool()
2014-12-17 13:09:29 +03:00
cdef int* heads_array = <int*>mem.alloc(tokens.length, sizeof(int))
cdef int* labels_array = <int*>mem.alloc(tokens.length, sizeof(int))
cdef int i
for i in range(tokens.length):
if gold_heads[i] is None:
heads_array[i] = -1
labels_array[i] = -1
else:
heads_array[i] = gold_heads[i]
labels_array[i] = self.moves.label_ids[gold_labels[i]]
py_words = [t.orth_ for t in tokens]
2015-01-28 19:18:29 +03:00
py_moves = ['S', 'D', 'L', 'R', 'BS', 'BR']
history = []
#print py_words
2014-12-16 14:44:43 +03:00
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(&guess, scores, state, heads_array, labels_array)
2015-01-28 19:18:29 +03:00
history.append((py_moves[best.move], print_state(state, py_words)))
self.model.update(context, guess.clas, best.clas, guess.cost)
2015-01-28 19:18:29 +03:00
if force_gold:
self.moves.transition(state, &best)
else:
self.moves.transition(state, &guess)
2014-12-17 13:09:29 +03:00
cdef int n_corr = 0
2014-12-16 14:44:43 +03:00
for i in range(tokens.length):
if gold_heads[i] != -1:
n_corr += (i + state.sent[i].head) == gold_heads[i]
2015-01-28 19:18:29 +03:00
if force_gold and n_corr != tokens.length:
print py_words
print gold_heads
for move, state_str in history:
print move, state_str
for i in range(tokens.length):
print py_words[i], py_words[i + state.sent[i].head], py_words[gold_heads[i]]
raise Exception
2014-12-16 14:44:43 +03:00
return n_corr