mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 12:18:04 +03:00
18 lines
421 B
Cython
18 lines
421 B
Cython
from cymem.cymem cimport Pool
|
|
|
|
from thinc.typedefs cimport weight_t
|
|
|
|
from .stateclass cimport StateClass
|
|
|
|
from .transition_system cimport TransitionSystem, Transition
|
|
from ..gold cimport GoldParseC
|
|
|
|
|
|
cdef class TreeArcEager(TransitionSystem):
|
|
pass
|
|
|
|
|
|
cdef int push_cost(StateClass stcls, const GoldParseC* gold, int target) nogil
|
|
cdef int arc_cost(StateClass stcls, const GoldParseC* gold, int head, int child) nogil
|
|
|