mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-10 19:57:17 +03:00
92 lines
1.3 KiB
Cython
92 lines
1.3 KiB
Cython
from libc.stdint cimport uint8_t, uint32_t, int32_t
|
|
|
|
from .typedefs cimport flags_t, attr_t, id_t, hash_t
|
|
from .parts_of_speech cimport univ_pos_t
|
|
|
|
|
|
cdef struct LexemeC:
|
|
const float* repvec
|
|
|
|
flags_t flags
|
|
|
|
attr_t id
|
|
attr_t length
|
|
|
|
attr_t orth
|
|
attr_t lower
|
|
attr_t norm
|
|
attr_t shape
|
|
attr_t prefix
|
|
attr_t suffix
|
|
|
|
attr_t cluster
|
|
|
|
float prob
|
|
float sentiment
|
|
float l2_norm
|
|
|
|
|
|
cdef struct Morphology:
|
|
uint8_t number
|
|
uint8_t tenspect # Tense/aspect/voice
|
|
uint8_t mood
|
|
uint8_t gender
|
|
uint8_t person
|
|
uint8_t case
|
|
uint8_t misc
|
|
|
|
|
|
cdef struct PosTag:
|
|
Morphology morph
|
|
int id
|
|
univ_pos_t pos
|
|
|
|
|
|
cdef struct Entity:
|
|
int start
|
|
int end
|
|
int label
|
|
|
|
|
|
cdef struct Constituent:
|
|
const TokenC* head
|
|
const Constituent* parent
|
|
const Constituent* first
|
|
const Constituent* last
|
|
int label
|
|
int length
|
|
|
|
|
|
cdef struct TokenC:
|
|
const LexemeC* lex
|
|
Morphology morph
|
|
const Constituent* ctnt
|
|
univ_pos_t pos
|
|
bint spacy
|
|
int tag
|
|
int idx
|
|
int lemma
|
|
int sense
|
|
int head
|
|
int dep
|
|
bint sent_start
|
|
|
|
uint32_t l_kids
|
|
uint32_t r_kids
|
|
uint32_t l_edge
|
|
uint32_t r_edge
|
|
|
|
int ent_iob
|
|
int ent_type
|
|
|
|
|
|
cdef struct Utf8Str:
|
|
unsigned char* chars
|
|
int length
|
|
|
|
|
|
cdef struct UniStr:
|
|
Py_UNICODE* chars
|
|
size_t n
|
|
hash_t key
|