mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-13 13:17:06 +03:00
18 lines
470 B
Cython
18 lines
470 B
Cython
from thinc.search cimport Beam
|
|
from thinc.api cimport AveragedPerceptron
|
|
from thinc.api cimport Example, 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_features(self, ExampleC* eg, StateClass stcls) except *
|
|
|
|
|
|
cdef class Parser:
|
|
cdef readonly ParserModel model
|
|
cdef readonly TransitionSystem moves
|