2015-02-21 15:38:18 +00:00
|
|
|
from cymem.cymem cimport Pool
|
|
|
|
from thinc.typedefs cimport weight_t
|
|
|
|
|
|
|
|
from ..structs cimport TokenC
|
|
|
|
from ._state cimport State
|
2015-02-21 16:06:37 +00:00
|
|
|
from .conll cimport GoldParse
|
2015-02-21 15:38:18 +00:00
|
|
|
|
|
|
|
|
|
|
|
cdef struct Transition:
|
|
|
|
int clas
|
|
|
|
int move
|
|
|
|
int label
|
|
|
|
|
|
|
|
weight_t score
|
|
|
|
|
2015-02-21 16:06:37 +00:00
|
|
|
int (*get_cost)(const Transition* self, const State* state, GoldParse gold) except -1
|
2015-02-21 15:38:18 +00:00
|
|
|
int (*do)(const Transition* self, State* state) except -1
|
|
|
|
|
|
|
|
|
|
|
|
ctypedef int (*get_cost_func_t)(const Transition* self, const State* state,
|
2015-02-21 16:06:37 +00:00
|
|
|
GoldParse gold) except -1
|
2015-02-21 15:38:18 +00:00
|
|
|
|
|
|
|
ctypedef int (*do_func_t)(const Transition* self, State* state) except -1
|
|
|
|
|
|
|
|
|
|
|
|
cdef class TransitionSystem:
|
|
|
|
cdef readonly dict label_ids
|
|
|
|
cdef Pool mem
|
|
|
|
cdef const Transition* c
|
2015-02-23 19:04:53 +00:00
|
|
|
cdef readonly int n_moves
|
2015-02-21 15:38:18 +00:00
|
|
|
|
|
|
|
cdef Transition init_transition(self, int clas, int move, int label) except *
|
|
|
|
|
2015-02-22 05:32:07 +00:00
|
|
|
cdef Transition best_valid(self, const weight_t* scores, const State* state) except *
|
2015-02-21 15:38:18 +00:00
|
|
|
|
2015-02-22 05:32:07 +00:00
|
|
|
cdef Transition best_gold(self, const weight_t* scores, const State* state,
|
|
|
|
GoldParse gold) except *
|