ts_fc.py 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. # copyright (c) 2024 PaddlePaddle Authors. All Rights Reserve.
  2. #
  3. # Licensed under the Apache License, Version 2.0 (the "License");
  4. # you may not use this file except in compliance with the License.
  5. # You may obtain a copy of the License at
  6. #
  7. # http://www.apache.org/licenses/LICENSE-2.0
  8. #
  9. # Unless required by applicable law or agreed to in writing, software
  10. # distributed under the License is distributed on an "AS IS" BASIS,
  11. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. # See the License for the specific language governing permissions and
  13. # limitations under the License.
  14. import os
  15. from ...modules.ts_forecast.model_list import MODELS
  16. from ..components import *
  17. from ..results import TSFcResult
  18. from ..utils.process_hook import batchable_method
  19. from .base import BasicPredictor
  20. class TSFcPredictor(BasicPredictor):
  21. entities = MODELS
  22. def _build_components(self):
  23. preprocess = self._build_preprocess()
  24. predictor = TSPPPredictor(
  25. model_dir=self.model_dir,
  26. model_prefix=self.MODEL_FILE_PREFIX,
  27. option=self.pp_option,
  28. )
  29. postprocess = self._build_postprocess()
  30. return {**preprocess, "predictor": predictor, **postprocess}
  31. def _build_preprocess(self):
  32. if not self.config.get("info_params", None):
  33. raise Exception("info_params is not found in config file")
  34. ops = {}
  35. ops["ReadTS"] = ReadTS()
  36. ops["TSCutOff"] = TSCutOff(self.config["size"])
  37. if self.config.get("scale", None):
  38. scaler_file_path = os.path.join(self.model_dir, "scaler.pkl")
  39. if not os.path.exists(scaler_file_path):
  40. raise Exception(f"Cannot find scaler file: {scaler_file_path}")
  41. ops["TSNormalize"] = TSNormalize(
  42. scaler_file_path, self.config["info_params"]
  43. )
  44. ops["BuildTSDataset"] = BuildTSDataset(self.config["info_params"])
  45. if self.config.get("time_feat", None):
  46. ops["TimeFeature"] = TimeFeature(
  47. self.config["info_params"],
  48. self.config["size"],
  49. self.config["holiday"],
  50. )
  51. ops["TStoArray"] = TStoArray(self.config["input_data"])
  52. return ops
  53. def _build_postprocess(self):
  54. if not self.config.get("info_params", None):
  55. raise Exception("info_params is not found in config file")
  56. ops = {}
  57. ops["ArraytoTS"] = ArraytoTS(self.config["info_params"])
  58. if self.config.get("scale", None):
  59. scaler_file_path = os.path.join(self.model_dir, "scaler.pkl")
  60. if not os.path.exists(scaler_file_path):
  61. raise Exception(f"Cannot find scaler file: {scaler_file_path}")
  62. ops["TSDeNormalize"] = TSDeNormalize(
  63. scaler_file_path, self.config["info_params"]
  64. )
  65. return ops
  66. def _pack_res(self, single):
  67. return TSFcResult({"ts_path": single["ts_path"], "forecast": single["pred"]})