spaCy/spacy/pipeline/trainable_pipe.pxd

10 lines
231 B
Cython
Raw Normal View History

from .pipe cimport Pipe
from ..vocab cimport Vocab
cdef class TrainablePipe(Pipe):
cdef public Vocab vocab
cdef public object model
cdef public object cfg
cdef public object scorer
cdef bint _store_activations