1
1
mirror of https://github.com/explosion/spaCy.git synced 2025-02-25 16:15:17 +03:00
spaCy/spacy/pipeline/trainable_pipe.pxd

9 lines
198 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