2014-12-19 22:54:03 +03:00
|
|
|
from libcpp.vector cimport vector
|
|
|
|
|
|
|
|
from preshed.maps cimport PreshMap
|
|
|
|
from cymem.cymem cimport Pool
|
|
|
|
from murmurhash.mrmr cimport hash64
|
|
|
|
|
|
|
|
from .structs cimport Lexeme, TokenC, UniStr
|
|
|
|
from .typedefs cimport utf8_t, id_t, hash_t
|
|
|
|
from .strings cimport StringStore
|
|
|
|
|
|
|
|
|
2014-12-24 09:42:00 +03:00
|
|
|
cdef Lexeme EMPTY_LEXEME
|
|
|
|
|
|
|
|
|
2014-12-19 22:54:03 +03:00
|
|
|
cdef union LexemesOrTokens:
|
|
|
|
const Lexeme* const* lexemes
|
|
|
|
TokenC* tokens
|
|
|
|
|
|
|
|
|
|
|
|
cdef struct _Cached:
|
|
|
|
LexemesOrTokens data
|
|
|
|
bint is_lex
|
|
|
|
int length
|
|
|
|
|
|
|
|
|
|
|
|
cdef class Vocab:
|
|
|
|
cpdef public get_lex_props
|
|
|
|
cdef Pool mem
|
|
|
|
cpdef readonly StringStore strings
|
|
|
|
cdef vector[Lexeme*] lexemes
|
|
|
|
|
|
|
|
cdef const Lexeme* get(self, Pool mem, UniStr* s) except NULL
|
|
|
|
|
|
|
|
cdef PreshMap _map
|
|
|
|
|