| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- # copyright (c) 2024 PaddlePaddle Authors. All Rights Reserve.
- #
- # 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 yaml
- import codecs
- from pathlib import Path
- from abc import abstractmethod
- from ....utils.subclass_register import AutoRegisterABCMetaClass
- from ....utils.func_register import FuncRegister
- from ....utils import logging
- from ...utils.device import constr_device
- from ...components.base import BaseComponent, ComponentsEngine
- from ...utils.pp_option import PaddlePredictorOption
- from ...utils.process_hook import generatorable_method
- from ..utils.predict_set import DeviceSetMixin, PPOptionSetMixin
- class BasePredictor(BaseComponent):
- KEEP_INPUT = False
- YIELD_BATCH = False
- INPUT_KEYS = "x"
- DEAULT_INPUTS = {"x": "x"}
- OUTPUT_KEYS = "result"
- DEAULT_OUTPUTS = {"result": "result"}
- MODEL_FILE_PREFIX = "inference"
- def __init__(self, model_dir, config=None):
- super().__init__()
- self.model_dir = Path(model_dir)
- self.config = config if config else self.load_config(self.model_dir)
- self._pred_set_func_map = {}
- self._pred_set_register = FuncRegister(self._pred_set_func_map)
- # alias predict() to the __call__()
- self.predict = self.__call__
- def __call__(self, input, **kwargs):
- self._set_predict(**kwargs)
- for res in super().__call__(input):
- yield res["result"]
- @property
- def config_path(self):
- return self.get_config_path(self.model_dir)
- @property
- def model_name(self) -> str:
- return self.config["Global"]["model_name"]
- @abstractmethod
- def apply(self, x):
- raise NotImplementedError
- @classmethod
- def get_config_path(cls, model_dir):
- return model_dir / f"{cls.MODEL_FILE_PREFIX}.yml"
- @classmethod
- def load_config(cls, model_dir):
- config_path = cls.get_config_path(model_dir)
- with codecs.open(config_path, "r", "utf-8") as file:
- dic = yaml.load(file, Loader=yaml.FullLoader)
- return dic
- def _set_predict(self, **kwargs):
- for k in kwargs:
- self._pred_set_func_map[k](kwargs[k])
- class BasicPredictor(
- BasePredictor, DeviceSetMixin, PPOptionSetMixin, metaclass=AutoRegisterABCMetaClass
- ):
- __is_base = True
- def __init__(self, model_dir, config=None):
- super().__init__(model_dir=model_dir, config=config)
- self._pred_set_register("device")(self.set_device)
- self._pred_set_register("pp_option")(self.set_pp_option)
- self.pp_option = PaddlePredictorOption()
- self.components = {}
- self._build_components()
- self.engine = ComponentsEngine(self.components)
- logging.debug(
- f"-------------------- {self.__class__.__name__} --------------------\nModel: {self.model_dir}"
- )
- def apply(self, x):
- """predict"""
- yield from self._generate_res(self.engine(x))
- @generatorable_method
- def _generate_res(self, batch_data):
- return [{"result": self._pack_res(data)} for data in batch_data]
- def _add_component(self, cmps):
- if not isinstance(cmps, list):
- cmps = [cmps]
- for cmp in cmps:
- if not isinstance(cmp, (list, tuple)):
- key = cmp.__class__.__name__
- else:
- assert len(cmp) == 2
- key = cmp[0]
- cmp = cmp[1]
- assert isinstance(key, str)
- assert isinstance(cmp, BaseComponent)
- assert (
- key not in self.components
- ), f"The key ({key}) has been used: {self.components}!"
- self.components[key] = cmp
- @abstractmethod
- def _build_components(self):
- raise NotImplementedError
- @abstractmethod
- def _pack_res(self, data):
- raise NotImplementedError
|