2014-12-16 14:44:43 +03:00
|
|
|
"""
|
|
|
|
MALT-style dependency parser
|
|
|
|
"""
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
cimport cython
|
2014-12-19 01:30:50 +03:00
|
|
|
from libc.stdint cimport uint32_t, uint64_t
|
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
|
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
|
|
|
|
|
2014-12-18 03:33:25 +03:00
|
|
|
from .arc_eager cimport TransitionSystem, Transition
|
2015-02-02 15:02:04 +03:00
|
|
|
from .arc_eager import OracleError
|
2014-12-16 14:44:43 +03:00
|
|
|
|
2014-12-19 01:30:50 +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
|
2014-12-18 01:05:31 +03:00
|
|
|
if name == 'zhang':
|
2014-12-31 11:40:59 +03:00
|
|
|
return pf.unigrams, pf.arc_eager
|
2014-12-18 01:05:31 +03:00
|
|
|
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 + \
|
2014-12-31 11:40:59 +03:00
|
|
|
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)
|
2014-12-31 11:40:59 +03:00
|
|
|
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
|
|
|
|
2015-01-17 08:21:17 +03:00
|
|
|
def __call__(self, Tokens tokens):
|
2014-12-16 14:44:43 +03:00
|
|
|
cdef:
|
2014-12-18 03:33:25 +03:00
|
|
|
Transition guess
|
2014-12-19 01:30:50 +03:00
|
|
|
uint64_t state_key
|
2014-12-16 14:44:43 +03:00
|
|
|
|
2015-02-10 18:15:58 +03:00
|
|
|
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)
|
|
|
|
while not is_final(state):
|
2014-12-19 19:48:51 +03:00
|
|
|
fill_context(context, state)
|
2014-12-31 11:40:59 +03:00
|
|
|
scores = self.model.score(context)
|
2014-12-19 19:48:51 +03:00
|
|
|
guess = self.moves.best_valid(scores, state)
|
2015-02-18 12:41:06 +03:00
|
|
|
guess.do(&guess, state)
|
2015-01-24 09:29:04 +03:00
|
|
|
# Messily tell Tokens object the string names of the dependency labels
|
2015-01-31 05:42:09 +03:00
|
|
|
dep_strings = [None] * len(self.moves.label_ids)
|
2015-01-24 09:29:04 +03:00
|
|
|
for label, id_ in self.moves.label_ids.items():
|
2015-01-31 05:42:09 +03:00
|
|
|
dep_strings[id_] = label
|
|
|
|
tokens._dep_strings = tuple(dep_strings)
|
2015-01-25 07:33:54 +03:00
|
|
|
tokens.is_parsed = True
|
2015-02-09 11:56:51 +03:00
|
|
|
# TODO: Clean this up.
|
|
|
|
tokens._py_tokens = [None] * tokens.length
|
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:
|
2014-12-18 12:41:32 +03:00
|
|
|
const Feature* feats
|
|
|
|
const weight_t* scores
|
2014-12-18 03:33:25 +03:00
|
|
|
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):
|
2015-01-30 06:08:56 +03:00
|
|
|
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]]
|
2015-01-27 17:06:13 +03:00
|
|
|
|
|
|
|
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):
|
2014-12-31 11:40:59 +03:00
|
|
|
fill_context(context, state)
|
|
|
|
scores = self.model.score(context)
|
2014-12-16 14:44:43 +03:00
|
|
|
guess = self.moves.best_valid(scores, state)
|
2014-12-18 03:33:25 +03:00
|
|
|
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)))
|
2014-12-31 11:40:59 +03:00
|
|
|
self.model.update(context, guess.clas, best.clas, guess.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)
|
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):
|
2015-01-30 06:08:56 +03:00
|
|
|
if gold_heads[i] != -1:
|
2015-01-30 10:05:06 +03:00
|
|
|
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:
|
2015-02-02 15:02:04 +03:00
|
|
|
#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 OracleError
|
2014-12-16 14:44:43 +03:00
|
|
|
return n_corr
|