mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-15 14:17:58 +03:00
20 lines
488 B
Cython
20 lines
488 B
Cython
from .structs cimport TokenC
|
|
from .vocab cimport Vocab
|
|
from ._ml cimport LinearModel
|
|
from thinc.structs cimport FeatureC
|
|
from thinc.typedefs cimport atom_t
|
|
|
|
|
|
cdef class TaggerModel(LinearModel):
|
|
cdef int set_featuresC(self, FeatureC* features, atom_t* context,
|
|
const TokenC* tokens, int i) nogil
|
|
|
|
|
|
|
|
cdef class Tagger:
|
|
cdef readonly Vocab vocab
|
|
cdef readonly TaggerModel model
|
|
cdef public dict freqs
|
|
cdef public object cfg
|
|
cdef public object optimizer
|