mirror of
https://github.com/explosion/spaCy.git
synced 2025-01-13 02:36:32 +03:00
13 lines
337 B
Cython
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
|