mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 04:08:09 +03:00
20 lines
555 B
Cython
20 lines
555 B
Cython
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):
|
|
cdef void set_featuresC(self, ExampleC* eg, StateClass stcls) nogil
|
|
|
|
|
|
cdef class Parser:
|
|
cdef readonly ParserModel model
|
|
cdef readonly TransitionSystem moves
|
|
|
|
cdef void parseC(self, Doc tokens, StateClass stcls, Example eg) nogil
|