mirror of https://github.com/explosion/spaCy.git
17 lines
364 B
Cython
17 lines
364 B
Cython
from thinc.search cimport Beam
|
|
|
|
from .._ml cimport Model
|
|
|
|
from .arc_eager cimport TransitionSystem
|
|
|
|
from ..tokens cimport Doc, TokenC
|
|
|
|
|
|
cdef class Parser:
|
|
cdef readonly object cfg
|
|
cdef readonly Model model
|
|
cdef readonly TransitionSystem moves
|
|
|
|
cdef int _greedy_parse(self, Doc tokens) except -1
|
|
cdef int _beam_parse(self, Doc tokens) except -1
|