spaCy/spacy/syntax/parser.pxd

14 lines
278 B
Cython
Raw Normal View History

from .._ml cimport Model, HastyModel
from .arc_eager cimport TransitionSystem
2014-12-30 10:21:17 +00:00
from ..tokens cimport Tokens, TokenC
2014-12-16 11:44:43 +00:00
cdef class GreedyParser:
cdef object cfg
cdef readonly Model model
cdef TransitionSystem moves
cpdef int parse(self, Tokens tokens) except -1