* Update tagger.pxd for CharacterTagger model

This commit is contained in:
Matthew Honnibal 2016-02-24 18:20:47 +01:00
parent 77f2b218f9
commit db87db87ea

View File

@ -10,6 +10,15 @@ cdef class TaggerNeuralNet(NeuralNet):
cdef void set_featuresC(self, ExampleC* eg, const TokenC* tokens, int i) except *
cdef class CharacterTagger(NeuralNet):
cdef readonly int depth
cdef readonly int hidden_width
cdef readonly int chars_width
cdef readonly int tags_width
cdef readonly float learn_rate
cdef readonly int left_window
cdef readonly int right_window
cdef readonly int tags_window
cdef readonly int chars_per_word
cdef void set_featuresC(self, ExampleC* eg, const TokenC* tokens, object strings, int i) except *
cdef class Tagger: