File size: 569 Bytes
a4b2002 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
"""
Time-RCD: Zero-Shot Time Series Anomaly Detection
This package provides the Time-RCD model for zero-shot anomaly detection in time series data.
Usage:
>>> from transformers import AutoModel
>>> model = AutoModel.from_pretrained("your-repo/Time-RCD", trust_remote_code=True)
"""
from .configuration_time_rcd import TimeRCDConfig
from .modeling_time_rcd import Time_RCD, TimeRCDOutput
from .processing_time_rcd import TimeRCDProcessor
__version__ = "1.0.0"
__all__ = [
"TimeRCDConfig",
"Time_RCD",
"TimeRCDOutput",
"TimeRCDProcessor",
]
|