mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 12:18:04 +03:00
19 lines
453 B
Cython
19 lines
453 B
Cython
from libcpp.vector cimport vector
|
|
|
|
from spacy.spacy cimport StringHash
|
|
from spacy.spacy cimport Lexeme
|
|
from spacy.spacy cimport Lexeme_addr
|
|
|
|
from spacy.spacy cimport Language
|
|
from spacy.tokens cimport Tokens
|
|
|
|
|
|
cdef class English(spacy.Language):
|
|
cdef int find_split(self, unicode word, size_t length)
|
|
|
|
cdef English EN
|
|
|
|
cpdef Lexeme_addr lookup(unicode word) except 0
|
|
cpdef Tokens tokenize(unicode string)
|
|
cpdef unicode unhash(StringHash hash_value)
|