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-10-19 01:25:21 +03:00
|
|
|
cdef void _parseC(self, StateC* state,
|
2017-10-19 19:42:11 +03:00
|
|
|
const float* feat_weights, const float* bias,
|
|
|
|
const float* hW, const float* hb,
|
2017-10-18 22:48:00 +03:00
|
|
|
int nr_class, int nr_hidden, int nr_feat, int nr_piece) nogil
|