mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 12:18:04 +03:00
8 lines
168 B
Cython
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
|