mirror of
https://github.com/wassname/catalyst.git
synced 2026-07-01 16:00:02 +08:00
fce97176d6
* 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
238 B
Python
11 lines
238 B
Python
|
|
class DummyMapping(object):
|
|
"""
|
|
Dummy object used to provide a mapping interface for singular values.
|
|
"""
|
|
def __init__(self, value):
|
|
self._value = value
|
|
|
|
def __getitem__(self, key):
|
|
return self._value
|