spaCy/spacy/spacy.pxd

40 lines
1.0 KiB
Cython
Raw Normal View History

from libcpp.vector cimport vector
2014-08-03 00:51:52 +04:00
from libc.stdint cimport uint32_t
from libc.stdint cimport uint64_t
# Circular import problems here
ctypedef size_t Lexeme_addr
2014-08-03 00:51:52 +04:00
ctypedef uint32_t StringHash
from spacy.lexeme cimport Lexeme
from spacy.tokens cimport Tokens
# Put these above import to avoid circular import problem
ctypedef char Bits8
ctypedef uint64_t Bits64
ctypedef int ClusterID
from spacy.lexeme cimport Lexeme
cdef class Language:
cdef object name
cdef dict chunks
cdef dict vocab
cdef dict bacov
cpdef Tokens tokenize(self, unicode text)
2014-08-16 05:22:03 +04:00
cdef Lexeme* lookup(self, unicode string) except NULL
cdef Lexeme** lookup_chunk(self, unicode chunk) except NULL
2014-08-16 05:22:03 +04:00
cdef Lexeme** new_chunk(self, unicode string, list substrings) except NULL
cdef Lexeme* new_lexeme(self, unicode lex) except NULL
2014-08-16 05:22:03 +04:00
cpdef unicode unhash(self, StringHash hashed)
cpdef list find_substrings(self, unicode chunk)
cdef int find_split(self, unicode word)
cdef int set_orth(self, unicode string, Lexeme* word)