mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 04:08:09 +03:00
950832f087
* Tidy up pipes * Fix init, defaults and raise custom errors * Update docs * Update docs [ci skip] * Apply suggestions from code review Co-authored-by: Matthew Honnibal <honnibal+gh@gmail.com> * Tidy up error handling and validation, fix consistency * Simplify get_examples check * Remove unused import [ci skip] Co-authored-by: Matthew Honnibal <honnibal+gh@gmail.com>
6 lines
127 B
Cython
6 lines
127 B
Cython
cdef class Pipe:
|
|
cdef public object vocab
|
|
cdef public object model
|
|
cdef public str name
|
|
cdef public object cfg
|