11 lines
244 B
Python
11 lines
244 B
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
概念异动检测 ML 模块
|
|
|
|
提供基于 Transformer Autoencoder 的异动检测功能
|
|
"""
|
|
|
|
from .inference import ConceptAnomalyDetector, MLAnomalyService
|
|
|
|
__all__ = ['ConceptAnomalyDetector', 'MLAnomalyService']
|