spaCy/spacy/syntax/_neural.pxd
2016-08-29 14:26:07 +02:00

13 lines
337 B
Cython

from thinc.linear.avgtron cimport AveragedPerceptron
from thinc.neural.nn cimport NeuralNet
from thinc.linear.features cimport ConjunctionExtracter
from thinc.structs cimport NeuralNetC, FeatureC
cdef class ParserNeuralNet(NeuralNet):
cdef ConjunctionExtracter extracter
cdef class ParserPerceptron(AveragedPerceptron):
pass