spaCy/spacy/syntax/parser.pyx

147 lines
4.9 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 cpython.ref cimport PyObject, Py_INCREF, Py_XDECREF
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
from os import path
2014-12-16 14:44:43 +03:00
import shutil
import json
import sys
2014-12-16 14:44:43 +03:00
from cymem.cymem cimport Pool, Address
from murmurhash.mrmr cimport hash64
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
2015-07-15 00:47:03 +03:00
from thinc.api cimport Example, ExampleC
2014-12-16 14:44:43 +03:00
from ..structs cimport TokenC
from ..tokens.doc cimport Doc
from ..strings cimport StringStore
2014-12-16 14:44:43 +03:00
from .transition_system import OracleError
from .transition_system cimport TransitionSystem, Transition
2014-12-16 14:44:43 +03:00
from ..gold cimport GoldParse
2014-12-16 14:44:43 +03:00
from . import _parse_features
from ._parse_features cimport CONTEXT_SIZE
from ._parse_features cimport fill_context
from .stateclass cimport StateClass
2014-12-16 14:44:43 +03:00
2015-07-15 00:47:03 +03:00
from .._ml cimport arg_max_if_true
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':
return pf.ner
elif name == 'debug':
return pf.unigrams
elif name.startswith('embed'):
2015-06-27 05:18:47 +03:00
return (pf.words, pf.tags, pf.labels)
else:
return (pf.unigrams + pf.s0_n0 + pf.s1_n0 + pf.s1_s0 + pf.s0_n1 + pf.n0_n1 + \
pf.tree_shape + pf.trigrams)
2014-12-16 14:44:43 +03:00
def ParserFactory(transition_system):
return lambda strings, dir_: Parser(strings, dir_, transition_system)
cdef class Parser:
def __init__(self, StringStore strings, model_dir, transition_system):
if not os.path.exists(model_dir):
print >> sys.stderr, "Warning: No model found at", model_dir
elif not os.path.isdir(model_dir):
print >> sys.stderr, "Warning: model path:", model_dir, "is not a directory"
else:
self.cfg = Config.read(model_dir, 'config')
self.moves = transition_system(strings, 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
2015-07-08 19:53:00 +03:00
def __call__(self, Doc tokens):
cdef StateClass stcls = StateClass.init(tokens.data, tokens.length)
self.moves.initialize_state(stcls)
2015-06-28 23:36:03 +03:00
cdef Example eg = Example(self.model.n_classes, CONTEXT_SIZE,
self.model.n_feats, self.model.n_feats)
with nogil:
self.parse(stcls, eg.c)
2015-07-15 00:47:03 +03:00
tokens.set_parse(stcls._sent)
2015-08-09 03:11:22 +03:00
def get_state(self, Doc tokens, initial_actions):
2015-08-09 00:32:15 +03:00
cdef StateClass stcls = StateClass.init(tokens.data, tokens.length)
self.moves.initialize_state(stcls)
cdef object action_name
cdef Transition action
2015-08-09 03:11:22 +03:00
cdef Example eg = Example(self.model.n_classes, CONTEXT_SIZE,
self.model.n_feats, self.model.n_feats)
2015-08-09 00:32:15 +03:00
for action_name in initial_actions:
2015-08-09 03:11:22 +03:00
if action_name == '_':
memset(eg.c.scores, 0, eg.c.nr_class * sizeof(weight_t))
self.moves.set_valid(eg.c.is_valid, stcls)
fill_context(eg.c.atoms, stcls)
self.model.set_scores(eg.c.scores, eg.c.atoms)
2015-08-09 02:45:30 +03:00
eg.c.guess = arg_max_if_true(eg.c.scores, eg.c.is_valid, self.model.n_classes)
2015-08-09 03:11:22 +03:00
action = self.moves.c[eg.c.guess]
else:
action = self.moves.lookup_transition(action_name)
action.do(stcls, action.label)
if stcls.is_final():
self.moves.finalize_state(stcls)
2015-08-09 00:32:15 +03:00
tokens.set_parse(stcls._sent)
return stcls
2015-07-15 00:47:03 +03:00
cdef void parse(self, StateClass stcls, ExampleC eg) nogil:
while not stcls.is_final():
2015-07-15 00:47:03 +03:00
memset(eg.scores, 0, eg.nr_class * sizeof(weight_t))
self.moves.set_valid(eg.is_valid, stcls)
2015-07-15 00:47:03 +03:00
fill_context(eg.atoms, stcls)
self.model.set_scores(eg.scores, eg.atoms)
eg.guess = arg_max_if_true(eg.scores, eg.is_valid, self.model.n_classes)
self.moves.c[eg.guess].do(stcls, self.moves.c[eg.guess].label)
self.moves.finalize_state(stcls)
def train(self, Doc tokens, GoldParse gold):
self.moves.preprocess_gold(gold)
cdef StateClass stcls = StateClass.init(tokens.data, tokens.length)
self.moves.initialize_state(stcls)
2015-06-28 23:36:03 +03:00
cdef Example eg = Example(self.model.n_classes, CONTEXT_SIZE,
self.model.n_feats, self.model.n_feats)
2015-06-30 15:26:32 +03:00
cdef weight_t loss = 0
words = [w.orth_ for w in tokens]
2015-06-30 15:26:32 +03:00
cdef Transition G
while not stcls.is_final():
2015-06-28 23:36:03 +03:00
memset(eg.c.scores, 0, eg.c.nr_class * sizeof(weight_t))
2015-08-09 00:32:15 +03:00
self.moves.set_costs(eg.c.is_valid, eg.c.costs, stcls, gold)
2015-08-09 00:32:15 +03:00
2015-06-28 23:36:03 +03:00
fill_context(eg.c.atoms, stcls)
self.model.train(eg)
2015-06-30 15:26:32 +03:00
G = self.moves.c[eg.c.guess]
2015-06-28 23:36:03 +03:00
self.moves.c[eg.c.guess].do(stcls, self.moves.c[eg.c.guess].label)
2015-06-30 15:26:32 +03:00
loss += eg.c.loss
return loss