pipeline.py 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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. output_dir: str,
  20. device: str, ) -> "BasePipeline":
  21. """build model evaluater
  22. Args:
  23. pipeline_name (str): the pipeline name, that is name of pipeline class
  24. Returns:
  25. BasePipeline: the pipeline, which is subclass of BasePipeline.
  26. """
  27. pipeline = BasePipeline.get(pipeline_name)(output_dir=output_dir,
  28. device=device)
  29. pipeline.update_model_name(model_list)
  30. pipeline.load_model()
  31. return pipeline
  32. class BasePipeline(ABC, metaclass=AutoRegisterABCMetaClass):
  33. """Base Pipeline
  34. """
  35. __is_base = True
  36. def __init__(self):
  37. super().__init__()
  38. @abstractmethod
  39. def load_model(self):
  40. """load model predictor
  41. """
  42. raise NotImplementedError
  43. @abstractmethod
  44. def update_model_name(self, model_list: list) -> dict:
  45. """update model name and re
  46. Args:
  47. model_list (list): list of model name.
  48. """
  49. raise NotImplementedError