Spaces:
Running
Running
File size: 467 Bytes
a464cc6 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | """IBM TSPulse polyphase anomaly detector (Vinh M3-V7 swap-point).
Wave-48 ship. Module exposes the lazy `TSPulseAnomalyDetector`; routes
import from this package + cache the singleton at module load.
"""
from apex.tspulse.anomaly import (
TSPulseAnomalyDetector,
TSPulseAnomalyResult,
detect_anomaly,
get_anomaly_detector,
)
__all__ = [
"TSPulseAnomalyDetector",
"TSPulseAnomalyResult",
"detect_anomaly",
"get_anomaly_detector",
]
|