mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 04:08:09 +03:00
12 lines
210 B
Cython
12 lines
210 B
Cython
|
from .syntax.parser cimport Parser
|
||
|
from .syntax.ner cimport BiluoPushDown
|
||
|
from .syntax.arc_eager cimport ArcEager
|
||
|
|
||
|
|
||
|
cdef class EntityRecognizer(Parser):
|
||
|
pass
|
||
|
|
||
|
|
||
|
cdef class DependencyParser(Parser):
|
||
|
pass
|