2015-02-21 18:38:18 +03:00
|
|
|
from cymem.cymem cimport Pool
|
|
|
|
from thinc.typedefs cimport weight_t
|
|
|
|
|
|
|
|
from ..structs cimport TokenC
|
|
|
|
from ._state cimport State
|
2015-02-21 19:06:37 +03:00
|
|
|
from .conll cimport GoldParse
|
2015-03-14 18:06:35 +03:00
|
|
|
from ..strings cimport StringStore
|
2015-02-21 18:38:18 +03:00
|
|
|
|
|
|
|
|
|
|
|
cdef struct Transition:
|
|
|
|
int clas
|
|
|
|
int move
|
|
|
|
int label
|
|
|
|
|
|
|
|
weight_t score
|
|
|
|
|
2015-02-21 19:06:37 +03:00
|
|
|
int (*get_cost)(const Transition* self, const State* state, GoldParse gold) except -1
|
2015-02-21 18:38:18 +03: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 19:06:37 +03:00
|
|
|
GoldParse gold) except -1
|
2015-02-21 18:38:18 +03:00
|
|
|
|
|
|
|
ctypedef int (*do_func_t)(const Transition* self, State* state) except -1
|
|
|
|
|
|
|
|
|
|
|
|
cdef class TransitionSystem:
|
|
|
|
cdef Pool mem
|
2015-03-14 18:06:35 +03:00
|
|
|
cdef StringStore strings
|
2015-02-21 18:38:18 +03:00
|
|
|
cdef const Transition* c
|
2015-02-23 22:04:53 +03:00
|
|
|
cdef readonly int n_moves
|
2015-02-21 18:38:18 +03:00
|
|
|
|
2015-03-10 20:00:23 +03:00
|
|
|
cdef int first_state(self, State* state) except -1
|
|
|
|
|
2015-03-09 14:06:01 +03:00
|
|
|
cdef int preprocess_gold(self, GoldParse gold) except -1
|
|
|
|
|
|
|
|
cdef Transition lookup_transition(self, object name) except *
|
|
|
|
|
2015-02-21 18:38:18 +03:00
|
|
|
cdef Transition init_transition(self, int clas, int move, int label) except *
|
|
|
|
|
2015-02-22 08:32:07 +03:00
|
|
|
cdef Transition best_valid(self, const weight_t* scores, const State* state) except *
|
2015-02-21 18:38:18 +03:00
|
|
|
|
2015-02-22 08:32:07 +03:00
|
|
|
cdef Transition best_gold(self, const weight_t* scores, const State* state,
|
|
|
|
GoldParse gold) except *
|
2015-03-09 08:46:22 +03:00
|
|
|
|
|
|
|
|
|
|
|
#cdef class PyState:
|
|
|
|
# """Provide a Python class for testing purposes."""
|
|
|
|
# cdef Pool mem
|
|
|
|
# cdef TransitionSystem system
|
|
|
|
# cdef State* _state
|