| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- # Copyright (c) 2024 PaddlePaddle Authors. All Rights Reserved.
- #
- # Licensed under the Apache License, Version 2.0 (the "License");
- # you may not use this file except in compliance with the License.
- # You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- import json
- from paddlex_hpi.models import TSFcPredictor
- from tests.models.base import BaseTestPredictor
- from paddlex.inference.results import TSFcResult
- MODEL_URL = "https://paddle-model-ecology.bj.bcebos.com/paddlex/PaddleX3.0/deploy/paddlex_hpi/tests/models/ts_fc_model.zip"
- INPUT_DATA_URL = "https://paddle-model-ecology.bj.bcebos.com/paddlex/PaddleX3.0/deploy/paddlex_hpi/tests/models/ts_fc_input.csv"
- EXPECTED_RESULT_URL = "https://paddle-model-ecology.bj.bcebos.com/paddlex/PaddleX3.0/deploy/paddlex_hpi/tests/models/ts_fc_result.json"
- class TestTSFcPredictor(BaseTestPredictor):
- @property
- def model_url(self):
- return MODEL_URL
- @property
- def input_data_url(self):
- return INPUT_DATA_URL
- @property
- def expected_result_url(self):
- return EXPECTED_RESULT_URL
- @property
- def predictor_cls(self):
- return TSFcPredictor
- def _check_result(self, result, expected_result):
- assert isinstance(result, TSFcResult)
- assert "input_ts" in result
- result.pop("input_ts")
- assert set(result) == set(expected_result)
- expected_result = json.loads(expected_result["forecast"])
- expected_result = [{"OT": round(i["OT"], 3)} for i in expected_result]
- result = result["forecast"].to_dict(orient="records")
- result = [{"OT": round(i["OT"], 3)} for i in result]
- assert result == expected_result
|