mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 04:08:09 +03:00
22 lines
401 B
Cython
22 lines
401 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(Parser):
|
|
pass
|
|
|
|
|
|
cdef class DependencyParser(Parser):
|
|
pass
|
|
|
|
|
|
#cdef class BeamEntityRecognizer(BeamParser):
|
|
# pass
|
|
#
|
|
#
|
|
#cdef class BeamDependencyParser(BeamParser):
|
|
# pass
|