spaCy/spacy/syntax/parser.pxd

14 lines
252 B
Cython
Raw Normal View History

from thinc.search cimport Beam
from .._ml cimport Model
from .arc_eager cimport TransitionSystem
2014-12-30 13:21:17 +03:00
from ..tokens cimport Tokens, TokenC
cdef class Parser:
2015-06-30 15:26:32 +03:00
cdef public object cfg
cdef public Model model
cdef public TransitionSystem moves