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-09-26 10:42:52 +00:00
|
|
|
cdef public object _multitasks
|
2017-05-13 22:55:01 +00:00
|
|
|
|
2018-03-27 17:23:02 +00:00
|
|
|
cdef void _parseC(self, StateC** states, int nr_task,
|
2017-10-19 16:42:11 +00:00
|
|
|
const float* feat_weights, const float* bias,
|
|
|
|
const float* hW, const float* hb,
|
2017-10-18 19:48:00 +00:00
|
|
|
int nr_class, int nr_hidden, int nr_feat, int nr_piece) nogil
|