spaCy/spacy/en/pos.pxd

22 lines
616 B
Cython
Raw Normal View History

2014-12-23 05:18:59 +03:00
from preshed.maps cimport PreshMapArray
2014-12-21 12:59:07 +03:00
from ..tagger cimport Tagger
from ..strings cimport StringStore
2014-12-23 05:18:59 +03:00
from ..structs cimport TokenC, Lexeme, Morphology, PosTag
from ..typedefs cimport univ_tag_t
from .lemmatizer import Lemmatizer
2014-12-21 12:59:07 +03:00
cdef class EnPosTagger(Tagger):
cdef readonly StringStore strings
2014-12-23 05:18:59 +03:00
cdef public object lemmatizer
cdef PreshMapArray _morph_cache
cdef PosTag* tags
cdef readonly object tag_names
cdef readonly object tag_map
cdef int set_morph(self, const int i, TokenC* tokens) except -1
cdef int lemmatize(self, const univ_tag_t pos, const Lexeme* lex) except -1