| """ | |
| 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", | |
| ] | |