mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-14 05:37:03 +03:00
17 lines
375 B
Cython
17 lines
375 B
Cython
from thinc.features cimport Extractor
|
|
from thinc.learner cimport LinearModel
|
|
|
|
from .arc_eager cimport TransitionSystem
|
|
|
|
from ..structs cimport TokenC
|
|
from ..tokens cimport Tokens
|
|
|
|
|
|
cdef class GreedyParser:
|
|
cdef object cfg
|
|
cdef Extractor extractor
|
|
cdef readonly LinearModel model
|
|
cdef TransitionSystem moves
|
|
|
|
cpdef int parse(self, Tokens tokens) except -1
|