mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-15 22:27:12 +03:00
14 lines
252 B
Cython
14 lines
252 B
Cython
from thinc.search cimport Beam
|
|
|
|
from .._ml cimport Model
|
|
|
|
from .arc_eager cimport TransitionSystem
|
|
|
|
from ..tokens cimport Tokens, TokenC
|
|
|
|
|
|
cdef class Parser:
|
|
cdef public object cfg
|
|
cdef public Model model
|
|
cdef public TransitionSystem moves
|