2017-05-13 22:55:01 +00:00
|
|
|
from thinc.typedefs cimport atom_t
|
|
|
|
|
|
|
|
from .stateclass cimport StateClass
|
|
|
|
from .arc_eager cimport TransitionSystem
|
|
|
|
from ..vocab cimport Vocab
|
|
|
|
from ..tokens.doc cimport Doc
|
|
|
|
from ..structs cimport TokenC
|
|
|
|
from ._state cimport StateC
|
|
|
|
|
|
|
|
|
|
|
|
cdef class Parser:
|
|
|
|
cdef readonly Vocab vocab
|
2017-05-15 19:46:08 +00:00
|
|
|
cdef public object model
|
2017-05-13 22:55:01 +00:00
|
|
|
cdef readonly TransitionSystem moves
|
|
|
|
cdef readonly object cfg
|
|
|
|
|
2017-05-22 22:58:12 +00:00
|
|
|
cdef void _parse_step(self, StateC* state,
|
2017-05-23 09:23:05 +00:00
|
|
|
const float* feat_weights,
|
2017-05-23 16:06:49 +00:00
|
|
|
int nr_class, int nr_feat, int nr_piece) nogil
|
2017-05-22 22:58:12 +00:00
|
|
|
|
2017-05-13 22:55:01 +00:00
|
|
|
#cdef int parseC(self, TokenC* tokens, int length, int nr_feat) nogil
|