spaCy/spacy/tagger.pxd

19 lines
554 B
Cython
Raw Normal View History

2016-02-15 16:40:28 +03:00
from thinc.neural.nn cimport NeuralNet
2016-01-29 05:58:55 +03:00
from thinc.extra.eg cimport Example
from thinc.structs cimport ExampleC
from .structs cimport TokenC
from .vocab cimport Vocab
2016-02-15 16:40:28 +03:00
cdef class TaggerNeuralNet(NeuralNet):
2016-01-29 05:58:55 +03:00
cdef void set_featuresC(self, ExampleC* eg, const TokenC* tokens, int i) except *
2016-02-15 16:40:28 +03:00
cdef class CharacterTagger(NeuralNet):
cdef void set_featuresC(self, ExampleC* eg, const TokenC* tokens, object strings, int i) except *
cdef class Tagger:
cdef readonly Vocab vocab
2016-02-15 16:40:28 +03:00
cdef readonly CharacterTagger model
cdef public dict freqs