mirror of
https://github.com/explosion/spaCy.git
synced 2025-01-27 17:54:39 +03:00
14 lines
286 B
Cython
14 lines
286 B
Cython
from .syntax.parser cimport Parser
|
|
from .syntax.beam_parser cimport BeamParser
|
|
from .syntax.ner cimport BiluoPushDown
|
|
from .syntax.arc_eager cimport ArcEager
|
|
from .tagger cimport Tagger
|
|
|
|
|
|
cdef class EntityRecognizer(BeamParser):
|
|
pass
|
|
|
|
|
|
cdef class DependencyParser(Parser):
|
|
pass
|