1
1
mirror of https://github.com/explosion/spaCy.git synced 2025-02-20 21:40:35 +03:00
spaCy/spacy/pipeline/trainable_pipe.pxd
2020-10-10 18:55:07 +02:00

8 lines
168 B
Cython

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