spaCy/spacy/syntax/parser.pxd

20 lines
555 B
Cython
Raw Normal View History

from thinc.linear.avgtron cimport AveragedPerceptron
from thinc.extra.eg cimport Example
from thinc.structs cimport ExampleC
from .stateclass cimport StateClass
from .arc_eager cimport TransitionSystem
from ..tokens.doc cimport Doc
from ..structs cimport TokenC
cdef class ParserModel(AveragedPerceptron):
2016-01-30 22:27:07 +03:00
cdef void set_featuresC(self, ExampleC* eg, StateClass stcls) nogil
cdef class Parser:
cdef readonly ParserModel model
2015-02-23 22:04:53 +03:00
cdef readonly TransitionSystem moves
2016-01-30 22:27:07 +03:00
cdef void parseC(self, Doc tokens, StateClass stcls, Example eg) nogil