spaCy/spacy/pipeline/trainable_pipe.pxd

10 lines
199 B
Cython
Raw Permalink Normal View History

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