2017-05-14 01:55:01 +03: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 22:46:08 +03:00
|
|
|
cdef public object model
|
2017-05-14 01:55:01 +03:00
|
|
|
cdef readonly TransitionSystem moves
|
|
|
|
cdef readonly object cfg
|
2017-09-26 13:42:52 +03:00
|
|
|
cdef public object _multitasks
|
2017-05-14 01:55:01 +03:00
|
|
|
|
2017-05-23 01:58:12 +03:00
|
|
|
cdef void _parse_step(self, StateC* state,
|
2017-05-23 12:23:05 +03:00
|
|
|
const float* feat_weights,
|
2017-05-23 19:06:49 +03:00
|
|
|
int nr_class, int nr_feat, int nr_piece) nogil
|
2017-05-23 01:58:12 +03:00
|
|
|
|
2017-05-14 01:55:01 +03:00
|
|
|
#cdef int parseC(self, TokenC* tokens, int length, int nr_feat) nogil
|