spaCy/spacy/syntax/parser.pxd

25 lines
736 B
Cython
Raw Normal View History

from thinc.linear.avgtron cimport AveragedPerceptron
2017-03-10 20:21:21 +03:00
from thinc.typedefs cimport atom_t
from thinc.structs cimport FeatureC
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 ParserModel(AveragedPerceptron):
2017-03-10 20:21:21 +03:00
cdef int set_featuresC(self, atom_t* context, FeatureC* features,
const StateC* state) nogil
2016-10-16 02:47:28 +03:00
cdef class Parser:
cdef readonly Vocab vocab
cdef readonly ParserModel model
2015-02-23 22:04:53 +03:00
cdef readonly TransitionSystem moves
2016-09-24 21:26:17 +03:00
cdef readonly object cfg
2016-01-30 22:27:07 +03:00
2017-03-10 20:21:21 +03:00
cdef int parseC(self, TokenC* tokens, int length, int nr_feat, int nr_class) with gil