mirror of
https://github.com/wassname/catalyst.git
synced 2026-06-27 16:29:48 +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
16 lines
215 B
Python
16 lines
215 B
Python
from .classifier import (
|
|
Classifier,
|
|
CustomClassifier,
|
|
Quantiles,
|
|
Everything,
|
|
Latest,
|
|
)
|
|
|
|
__all__ = [
|
|
'Classifier',
|
|
'CustomClassifier',
|
|
'Everything',
|
|
'Latest',
|
|
'Quantiles',
|
|
]
|