2015-08-26 20:18:36 +03:00
|
|
|
from libc.stdint cimport uint8_t, uint32_t, int32_t, uint64_t
|
2014-12-19 22:51:33 +03:00
|
|
|
|
2015-07-18 23:39:57 +03:00
|
|
|
from .typedefs cimport flags_t, attr_t, hash_t
|
2015-01-25 08:31:07 +03:00
|
|
|
from .parts_of_speech cimport univ_pos_t
|
2014-12-19 22:51:33 +03:00
|
|
|
|
|
|
|
|
2015-01-12 02:26:22 +03:00
|
|
|
cdef struct LexemeC:
|
2015-11-03 15:47:59 +03:00
|
|
|
float* vector
|
2015-01-12 02:26:22 +03:00
|
|
|
|
2014-12-19 22:51:33 +03:00
|
|
|
flags_t flags
|
2015-04-19 11:31:31 +03:00
|
|
|
|
2016-03-10 15:01:34 +03:00
|
|
|
attr_t lang
|
|
|
|
|
2014-12-19 22:51:33 +03:00
|
|
|
attr_t id
|
2015-01-12 03:23:44 +03:00
|
|
|
attr_t length
|
|
|
|
|
2015-01-22 18:08:25 +03:00
|
|
|
attr_t orth
|
2015-01-23 22:17:03 +03:00
|
|
|
attr_t lower
|
|
|
|
attr_t norm
|
2014-12-19 22:51:33 +03:00
|
|
|
attr_t shape
|
|
|
|
attr_t prefix
|
|
|
|
attr_t suffix
|
2015-04-19 11:31:31 +03:00
|
|
|
|
2014-12-19 22:51:33 +03:00
|
|
|
attr_t cluster
|
|
|
|
|
|
|
|
float prob
|
|
|
|
float sentiment
|
2015-02-07 16:43:17 +03:00
|
|
|
float l2_norm
|
2014-12-19 22:51:33 +03:00
|
|
|
|
|
|
|
|
2015-03-09 08:46:22 +03:00
|
|
|
cdef struct Entity:
|
|
|
|
int start
|
|
|
|
int end
|
|
|
|
int label
|
2015-03-10 20:00:23 +03:00
|
|
|
|
2015-03-09 08:46:22 +03:00
|
|
|
|
2014-12-19 22:51:33 +03:00
|
|
|
cdef struct TokenC:
|
2015-01-12 02:26:22 +03:00
|
|
|
const LexemeC* lex
|
2015-08-28 03:02:33 +03:00
|
|
|
uint64_t morph
|
2015-01-25 08:31:07 +03:00
|
|
|
univ_pos_t pos
|
2015-07-13 20:48:07 +03:00
|
|
|
bint spacy
|
2015-01-17 08:21:17 +03:00
|
|
|
int tag
|
2014-12-19 22:51:33 +03:00
|
|
|
int idx
|
|
|
|
int lemma
|
|
|
|
int sense
|
|
|
|
int head
|
2015-01-17 08:21:17 +03:00
|
|
|
int dep
|
2015-06-23 06:39:23 +03:00
|
|
|
bint sent_start
|
2015-04-29 20:14:20 +03:00
|
|
|
|
2014-12-19 22:51:33 +03:00
|
|
|
uint32_t l_kids
|
|
|
|
uint32_t r_kids
|
2015-04-29 20:14:20 +03:00
|
|
|
uint32_t l_edge
|
|
|
|
uint32_t r_edge
|
2014-12-19 22:51:33 +03:00
|
|
|
|
2015-03-10 20:00:23 +03:00
|
|
|
int ent_iob
|
|
|
|
int ent_type
|