predictor.py 488 B

123456789101112131415161718
  1. # !/usr/bin/env python3
  2. # -*- coding: UTF-8 -*-
  3. ################################################################################
  4. #
  5. # Copyright (c) 2024 Baidu.com, Inc. All Rights Reserved
  6. #
  7. ################################################################################
  8. """
  9. Author: PaddlePaddle Authors
  10. """
  11. from ..ts_forecast import TSFCPredictor
  12. from .model_list import MODELS
  13. class TSADPredictor(TSFCPredictor):
  14. """ TS Anomaly Detection Model Predictor """
  15. entities = MODELS