2015-07-13 17:58:26 +00:00
|
|
|
from cymem.cymem cimport Pool
|
|
|
|
cimport numpy as np
|
|
|
|
|
|
|
|
from ..vocab cimport Vocab
|
|
|
|
from ..structs cimport TokenC, LexemeC
|
2015-08-05 22:35:40 +00:00
|
|
|
from ..typedefs cimport attr_t
|
|
|
|
from ..attrs cimport attr_id_t
|
|
|
|
|
|
|
|
|
|
|
|
cdef attr_t get_token_attr(const TokenC* token, attr_id_t feat_name) nogil
|
2020-04-29 10:57:30 +00:00
|
|
|
cdef attr_t get_token_attr_for_matcher(const TokenC* token, attr_id_t feat_name) nogil
|
2015-07-13 17:58:26 +00:00
|
|
|
|
|
|
|
|
|
|
|
ctypedef const LexemeC* const_Lexeme_ptr
|
2015-08-28 00:02:33 +00:00
|
|
|
ctypedef const TokenC* const_TokenC_ptr
|
2015-07-13 17:58:26 +00:00
|
|
|
|
|
|
|
ctypedef fused LexemeOrToken:
|
|
|
|
const_Lexeme_ptr
|
2015-08-28 00:02:33 +00:00
|
|
|
const_TokenC_ptr
|
2015-07-13 17:58:26 +00:00
|
|
|
|
|
|
|
|
2020-09-16 18:32:38 +00:00
|
|
|
cdef int set_children_from_heads(TokenC* tokens, int start, int end) except -1
|
2018-03-27 17:23:02 +00:00
|
|
|
|
|
|
|
|
2020-09-16 18:32:38 +00:00
|
|
|
cdef int _set_lr_kids_and_edges(TokenC* tokens, int start, int end, int loop_count) except -1
|
2019-11-25 12:06:36 +00:00
|
|
|
|
|
|
|
|
2015-11-06 21:55:34 +00:00
|
|
|
cdef int token_by_start(const TokenC* tokens, int length, int start_char) except -2
|
|
|
|
|
|
|
|
|
|
|
|
cdef int token_by_end(const TokenC* tokens, int length, int end_char) except -2
|
|
|
|
|
|
|
|
|
2018-12-29 17:02:26 +00:00
|
|
|
cdef int [:,:] _get_lca_matrix(Doc, int start, int end)
|
|
|
|
|
2015-07-13 17:58:26 +00:00
|
|
|
cdef class Doc:
|
2015-07-28 18:46:59 +00:00
|
|
|
cdef readonly Pool mem
|
|
|
|
cdef readonly Vocab vocab
|
2015-07-13 17:58:26 +00:00
|
|
|
|
2015-09-17 01:50:11 +00:00
|
|
|
cdef public object _vector
|
|
|
|
cdef public object _vector_norm
|
|
|
|
|
2017-05-07 16:04:24 +00:00
|
|
|
cdef public object tensor
|
2017-07-21 22:34:15 +00:00
|
|
|
cdef public object cats
|
2016-10-17 09:43:22 +00:00
|
|
|
cdef public object user_data
|
2016-10-14 01:24:13 +00:00
|
|
|
|
2015-11-03 13:15:14 +00:00
|
|
|
cdef TokenC* c
|
2015-07-13 17:58:26 +00:00
|
|
|
|
2016-10-19 18:54:03 +00:00
|
|
|
cdef public float sentiment
|
|
|
|
|
|
|
|
cdef public dict user_hooks
|
|
|
|
cdef public dict user_token_hooks
|
|
|
|
cdef public dict user_span_hooks
|
2016-10-17 00:42:05 +00:00
|
|
|
|
2020-07-03 10:58:16 +00:00
|
|
|
cdef public bint has_unknown_spaces
|
|
|
|
|
2015-07-13 20:28:10 +00:00
|
|
|
cdef public list _py_tokens
|
|
|
|
|
2015-07-13 17:58:26 +00:00
|
|
|
cdef int length
|
|
|
|
cdef int max_length
|
|
|
|
|
2020-07-03 10:58:16 +00:00
|
|
|
|
2016-05-02 13:26:24 +00:00
|
|
|
cdef public object noun_chunks_iterator
|
2016-03-16 14:53:35 +00:00
|
|
|
|
2017-10-16 17:22:11 +00:00
|
|
|
cdef object __weakref__
|
|
|
|
|
2017-09-26 12:28:50 +00:00
|
|
|
cdef int push_back(self, LexemeOrToken lex_or_tok, bint has_space) except -1
|
2015-07-13 17:58:26 +00:00
|
|
|
|
|
|
|
cpdef np.ndarray to_array(self, object features)
|