mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 12:18:04 +03:00
51 lines
1.1 KiB
Cython
51 lines
1.1 KiB
Cython
from cymem.cymem cimport Pool
|
|
|
|
from .lexeme cimport Lexeme
|
|
from .typedefs cimport flag_t
|
|
from .utf8string cimport StringStore
|
|
|
|
from thinc.typedefs cimport atom_t
|
|
|
|
|
|
cdef class Tokens:
|
|
cdef Pool mem
|
|
cdef StringStore _string_store
|
|
|
|
cdef Lexeme** _lex_ptr
|
|
cdef int* _idx_ptr
|
|
cdef int* _pos_ptr
|
|
cdef Lexeme** lex
|
|
cdef int* idx
|
|
cdef int* pos
|
|
|
|
cdef int length
|
|
cdef int max_length
|
|
|
|
cdef int extend(self, int i, Lexeme** lexemes, int n) except -1
|
|
cdef int push_back(self, int i, Lexeme* lexeme) except -1
|
|
|
|
|
|
cdef class Token:
|
|
cdef StringStore _string_store
|
|
cdef public int i
|
|
cdef public int idx
|
|
cdef public int pos
|
|
|
|
cdef public atom_t id
|
|
cdef public atom_t cluster
|
|
cdef public atom_t length
|
|
cdef public atom_t postype
|
|
cdef public atom_t sensetype
|
|
|
|
cdef public atom_t sic
|
|
cdef public atom_t norm
|
|
cdef public atom_t shape
|
|
cdef public atom_t vocab10k
|
|
cdef public atom_t asciied
|
|
cdef public atom_t prefix
|
|
cdef public atom_t suffix
|
|
|
|
cdef public float prob
|
|
|
|
cdef public flag_t flags
|