mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 20:28:20 +03:00
1f7229f40f
This reverts commitc9ba3d3c2d
, reversing changes made to92c26a35d4
.
22 lines
651 B
Cython
22 lines
651 B
Cython
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
|
|
cdef public object model
|
|
cdef readonly TransitionSystem moves
|
|
cdef readonly object cfg
|
|
cdef public object _multitasks
|
|
|
|
cdef void _parseC(self, StateC** states, int nr_task,
|
|
const float* feat_weights, const float* bias,
|
|
const float* hW, const float* hb,
|
|
int nr_class, int nr_hidden, int nr_feat, int nr_piece) nogil
|