| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- # Copyright (c) Alibaba, Inc. and its affiliates.
- from typing import Any, Dict, Optional, Union
- import numpy as np
- from modelscope.metainfo import Pipelines
- from modelscope.models import Model
- from modelscope.outputs import OutputKeys
- from modelscope.pipelines.base import Pipeline
- from modelscope.pipelines.builder import PIPELINES
- from modelscope.preprocessors import (Preprocessor,
- TextRankingTransformersPreprocessor)
- from modelscope.utils.constant import ModelFile, Tasks
- __all__ = ['TextRankingPipeline']
- @PIPELINES.register_module(
- Tasks.text_ranking, module_name=Pipelines.text_ranking)
- class TextRankingPipeline(Pipeline):
- def __init__(self,
- model: Union[Model, str],
- preprocessor: Optional[Preprocessor] = None,
- config_file: str = None,
- device: str = 'gpu',
- auto_collate=True,
- sequence_length=128,
- **kwargs):
- """Use `model` and `preprocessor` to create a nlp word segment pipeline for prediction.
- Args:
- model (str or Model): Supply either a local model dir which supported the WS task,
- or a model id from the model hub, or a torch model instance.
- preprocessor (Preprocessor): An optional preprocessor instance, please make sure the preprocessor fits for
- the model if supplied.
- kwargs (dict, `optional`):
- Extra kwargs passed into the preprocessor's constructor.
- """
- super().__init__(
- model=model,
- preprocessor=preprocessor,
- config_file=config_file,
- device=device,
- auto_collate=auto_collate,
- compile=kwargs.pop('compile', False),
- compile_options=kwargs.pop('compile_options', {}))
- assert isinstance(self.model, Model), \
- f'please check whether model config exists in {ModelFile.CONFIGURATION}'
- if preprocessor is None:
- self.preprocessor = Preprocessor.from_pretrained(
- self.model.model_dir,
- sequence_length=sequence_length,
- **kwargs)
- def forward(self, inputs: Dict[str, Any],
- **forward_params) -> Dict[str, Any]:
- return self.model(**inputs, **forward_params)
- def postprocess(self, inputs: Dict[str, Any]) -> Dict[str, Any]:
- """process the prediction results
- Args:
- inputs (Dict[str, Any]): _description_
- Returns:
- Dict[str, Any]: the predicted text representation
- """
- def sigmoid(logits):
- return np.exp(logits) / (1 + np.exp(logits))
- logits = inputs[OutputKeys.LOGITS].squeeze(-1).detach().cpu().numpy()
- pred_list = sigmoid(logits).tolist()
- return {OutputKeys.SCORES: pred_list}
|