mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-10 19:57:17 +03:00
40 lines
739 B
Cython
40 lines
739 B
Cython
from cymem.cymem cimport Pool
|
|
|
|
from thinc.learner cimport LinearModel
|
|
from thinc.features cimport Extractor
|
|
from thinc.typedefs cimport atom_t, feat_t, weight_t, class_t
|
|
|
|
from .tokens cimport Tokens
|
|
|
|
|
|
cpdef enum PosTag:
|
|
NONE
|
|
ADJ
|
|
ADP
|
|
ADV
|
|
CONJ
|
|
DET
|
|
NOUN
|
|
NUM
|
|
PDT
|
|
POS
|
|
PRON
|
|
PRT
|
|
PUNCT
|
|
VERB
|
|
|
|
|
|
cdef class Tagger:
|
|
cpdef readonly Extractor extractor
|
|
cpdef readonly LinearModel model
|
|
|
|
cpdef class_t predict(self, int i, Tokens tokens, class_t prev, class_t prev_prev) except 0
|
|
cpdef bint tell_answer(self, class_t gold_tag) except *
|
|
|
|
cdef Pool mem
|
|
cdef class_t _guess
|
|
cdef atom_t* _atoms
|
|
cdef feat_t* _feats
|
|
cdef weight_t* _values
|
|
cdef weight_t* _scores
|