spaCy/spacy/morphology.pxd

39 lines
1.2 KiB
Cython
Raw Normal View History

from cymem.cymem cimport Pool
2018-09-25 01:35:59 +03:00
from preshed.maps cimport PreshMap, PreshMapArray
from libc.stdint cimport uint64_t
2018-09-25 00:57:41 +03:00
from murmurhash cimport mrmr
2019-03-07 16:03:07 +03:00
from .structs cimport TokenC, MorphAnalysisC
from .strings cimport StringStore
2018-09-25 00:57:41 +03:00
from .typedefs cimport hash_t, attr_t, flags_t
from .parts_of_speech cimport univ_pos_t
from . cimport symbols
cdef class Morphology:
cdef readonly Pool mem
cdef readonly StringStore strings
2018-09-25 00:57:41 +03:00
cdef PreshMap tags # Keyed by hash, value is pointer to tag
cdef public object lemmatizer
cdef readonly object tag_map
2018-09-25 01:35:59 +03:00
cdef readonly object tag_names
cdef readonly object reverse_index
cdef readonly object exc
2018-09-25 11:57:33 +03:00
cdef readonly PreshMapArray _cache
2018-09-25 01:35:59 +03:00
cdef readonly int n_tags
2018-09-25 22:07:08 +03:00
cpdef update(self, hash_t morph, features)
2019-03-07 16:03:07 +03:00
cdef hash_t insert(self, MorphAnalysisC tag) except 0
2018-09-25 00:57:41 +03:00
cdef int assign_untagged(self, TokenC* token) except -1
cdef int assign_tag(self, TokenC* token, tag) except -1
2016-11-04 21:19:09 +03:00
cdef int assign_tag_id(self, TokenC* token, int tag_id) except -1
2018-09-25 16:18:21 +03:00
cdef int _assign_tag_from_exceptions(self, TokenC* token, int tag_id) except -1
2019-03-07 20:33:06 +03:00
cdef int check_feature(const MorphAnalysisC* tag, attr_t feature) nogil
cdef tag_to_json(MorphAnalysisC tag)