mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 12:18:04 +03:00
14 lines
276 B
Cython
14 lines
276 B
Cython
from ._ml cimport Model
|
|
from thinc.nn cimport InputLayer
|
|
|
|
|
|
cdef class TheanoModel(Model):
|
|
cdef InputLayer input_layer
|
|
cdef object train_func
|
|
cdef object predict_func
|
|
cdef object debug
|
|
|
|
cdef public float eta
|
|
cdef public float mu
|
|
cdef public float t
|