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 13:21:17 +03:00
from ..tokens cimport Tokens, TokenC
2014-12-16 14:44:43 +03:00
cdef class GreedyParser:
cdef object cfg
cdef readonly Model model
cdef TransitionSystem moves
cpdef int parse(self, Tokens tokens) except -1