pipeline.py 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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. from abc import ABC, abstractmethod
  15. from ...utils.misc import AutoRegisterABCMetaClass
  16. def build_pipeline(
  17. pipeline_name: str,
  18. model_list: list,
  19. model_dir_list: list,
  20. output: str,
  21. device: str,
  22. ) -> "BasePipeline":
  23. """build model evaluater
  24. Args:
  25. pipeline_name (str): the pipeline name, that is name of pipeline class
  26. Returns:
  27. BasePipeline: the pipeline, which is subclass of BasePipeline.
  28. """
  29. pipeline = BasePipeline.get(pipeline_name)(output=output, device=device)
  30. pipeline.update_model(model_list, model_dir_list)
  31. pipeline.load_model()
  32. return pipeline
  33. class BasePipeline(ABC, metaclass=AutoRegisterABCMetaClass):
  34. """Base Pipeline"""
  35. __is_base = True
  36. def __init__(self):
  37. super().__init__()
  38. @abstractmethod
  39. def load_model(self):
  40. """load model predictor"""
  41. raise NotImplementedError
  42. @abstractmethod
  43. def update_model(self, model_name_list, model_dir_list):
  44. """update model
  45. Args:
  46. model_name_list (list): list of model name.
  47. model_dir_list (list): list of model directory.
  48. """
  49. raise NotImplementedError
  50. @abstractmethod
  51. def get_input_keys(self):
  52. """get dict keys of input argument input"""
  53. raise NotImplementedError