mirror of
https://github.com/wassname/catalyst.git
synced 2026-09-09 11:19:23 +08:00
* Updated cython build scripts * Updated setup.py to to install catalyst package * Updated momentum example to use catalyst package * catalyst executable now supports loading pipelines from multiple bundles
11 lines
190 B
Python
11 lines
190 B
Python
|
|
from catalyst.utils.sentinel import sentinel
|
|
|
|
|
|
NotSpecified = sentinel(
|
|
'NotSpecified',
|
|
'Singleton sentinel value used for Term defaults.',
|
|
)
|
|
|
|
NotSpecifiedType = type(NotSpecified)
|