mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 04:08:09 +03:00
12 lines
208 B
Cython
12 lines
208 B
Cython
from cymem.cymem cimport Pool
|
|
|
|
from thinc.typedefs cimport weight_t
|
|
|
|
|
|
from ._state cimport State
|
|
from .transition_system cimport TransitionSystem, Transition
|
|
|
|
|
|
cdef class ArcEager(TransitionSystem):
|
|
pass
|