spaCy/spacy/en/pos.pxd

10 lines
257 B
Cython

from ..tagger cimport Tagger
from ..morphology cimport Morphologizer
from ..strings cimport StringStore
cdef class EnPosTagger(Tagger):
cdef readonly StringStore strings
cdef readonly StringStore tags
cdef readonly Morphologizer morphologizer