1
1
mirror of https://github.com/explosion/spaCy.git synced 2025-03-12 23:35:47 +03:00
spaCy/spacy/pipeline/trainable_pipe.pxd
2023-06-26 11:41:03 +02:00

11 lines
231 B
Cython

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
cdef bint _save_activations