pipeline.py 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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_multilabel_classification.result import MLClassResult
  22. class ImageMultiLabelClassificationPipeline(BasePipeline):
  23. """Image Multi Label Classification Pipeline"""
  24. entities = "image_multilabel_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. self.threshold = config["SubModules"]["ImageMultiLabelClassification"].get(
  42. "threshold", None
  43. )
  44. image_multilabel_classification_model_config = config["SubModules"][
  45. "ImageMultiLabelClassification"
  46. ]
  47. self.image_multilabel_classification_model = self.create_model(
  48. image_multilabel_classification_model_config
  49. )
  50. batch_size = image_multilabel_classification_model_config["batch_size"]
  51. def predict(
  52. self,
  53. input: Union[str, List[str], np.ndarray, List[np.ndarray]],
  54. threshold: Union[float, dict, list, None] = None,
  55. **kwargs
  56. ) -> MLClassResult:
  57. """Predicts image classification results for the given input.
  58. Args:
  59. input (Union[str, list[str], np.ndarray, list[np.ndarray]]): The input image(s) or path(s) to the images.
  60. **kwargs: Additional keyword arguments that can be passed to the function.
  61. Returns:
  62. TopkResult: The predicted top k results.
  63. """
  64. yield from self.image_multilabel_classification_model(
  65. input=input,
  66. threshold=self.threshold if threshold is None else threshold,
  67. )