mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 12:18:04 +03:00
20 lines
505 B
Cython
20 lines
505 B
Cython
from libc.stdint cimport uint32_t, uint64_t
|
|
from thinc.features cimport Extractor
|
|
from thinc.learner cimport LinearModel
|
|
|
|
from .arc_eager cimport TransitionSystem
|
|
|
|
from ..tokens cimport Tokens, TokenC
|
|
from ._state cimport State
|
|
from ..index cimport DecisionMemory
|
|
|
|
|
|
cdef class GreedyParser:
|
|
cdef object cfg
|
|
cdef Extractor extractor
|
|
cdef readonly LinearModel model
|
|
cdef TransitionSystem moves
|
|
cdef readonly DecisionMemory guess_cache
|
|
|
|
cpdef int parse(self, Tokens tokens) except -1
|