spaCy/spacy/syntax/parser.pxd

15 lines
281 B
Cython
Raw Normal View History

from thinc.search cimport Beam
from .._ml cimport Model
from .arc_eager cimport TransitionSystem
from ..tokens.doc cimport Doc
from ..structs cimport TokenC
cdef class Parser:
2015-02-23 19:04:53 +00:00
cdef readonly object cfg
cdef readonly Model model
2015-02-23 19:04:53 +00:00
cdef readonly TransitionSystem moves