spaCy/spacy/syntax/_neural.pxd

13 lines
337 B
Cython
Raw Permalink Normal View History

2016-07-27 03:56:50 +03:00
from thinc.linear.avgtron cimport AveragedPerceptron
from thinc.neural.nn cimport NeuralNet
from thinc.linear.features cimport ConjunctionExtracter
from thinc.structs cimport NeuralNetC, FeatureC
2016-07-27 03:56:50 +03:00
cdef class ParserNeuralNet(NeuralNet):
cdef ConjunctionExtracter extracter
cdef class ParserPerceptron(AveragedPerceptron):
2016-08-29 15:25:54 +03:00
pass