pipeline.py 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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 typing import Any, Dict, Optional, Union, List
  15. import numpy as np
  16. from ...common.reader import ReadImage
  17. from ...common.batch_sampler import ImageBatchSampler
  18. from ...utils.pp_option import PaddlePredictorOption
  19. from ..base import BasePipeline
  20. # [TODO] 待更新models_new到models
  21. from ...models_new.image_classification.result import TopkResult
  22. class ImageClassificationPipeline(BasePipeline):
  23. """Image Classification Pipeline"""
  24. entities = "image_classification"
  25. def __init__(
  26. self,
  27. config: Dict,
  28. device: str = None,
  29. pp_option: PaddlePredictorOption = None,
  30. use_hpip: bool = False,
  31. ) -> None:
  32. """
  33. Initializes the class with given configurations and options.
  34. Args:
  35. config (Dict): Configuration dictionary containing model and other parameters.
  36. device (str): The device to run the prediction on. Default is None.
  37. pp_option (PaddlePredictorOption): Options for PaddlePaddle predictor. Default is None.
  38. use_hpip (bool): Whether to use high-performance inference (hpip) for prediction. Defaults to False.
  39. """
  40. super().__init__(device=device, pp_option=pp_option, use_hpip=use_hpip)
  41. image_classification_model_config = config["SubModules"]["ImageClassification"]
  42. model_kwargs = {}
  43. if (topk := image_classification_model_config.get("topk", None)) is not None:
  44. model_kwargs = {"topk": topk}
  45. self.image_classification_model = self.create_model(
  46. image_classification_model_config, **model_kwargs
  47. )
  48. self.topk = image_classification_model_config.get("topk", 5)
  49. def predict(
  50. self, input: Union[str, List[str], np.ndarray, List[np.ndarray]], **kwargs
  51. ) -> TopkResult:
  52. """Predicts image classification results for the given input.
  53. Args:
  54. input (Union[str, list[str], np.ndarray, list[np.ndarray]]): The input image(s) or path(s) to the images.
  55. **kwargs: Additional keyword arguments that can be passed to the function.
  56. Returns:
  57. TopkResult: The predicted top k results.
  58. """
  59. topk = kwargs.pop("topk", self.topk)
  60. yield from self.image_classification_model(input, topk=topk)