mirror of
https://github.com/explosion/spaCy.git
synced 2024-12-26 18:06:29 +03:00
9 lines
203 B
Cython
9 lines
203 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
|
||
|
cdef public set _added_strings
|