2022-09-10 15:59:56 +08:00
|
|
|
# Copyright (c) Alibaba, Inc. and its affiliates.
|
|
|
|
|
import shutil
|
|
|
|
|
import unittest
|
|
|
|
|
|
|
|
|
|
from modelscope.hub.snapshot_download import snapshot_download
|
|
|
|
|
from modelscope.models import Model
|
2022-10-22 17:12:48 +08:00
|
|
|
from modelscope.models.nlp import TextRanking
|
2022-09-10 15:59:56 +08:00
|
|
|
from modelscope.pipelines import pipeline
|
2022-10-22 17:12:48 +08:00
|
|
|
from modelscope.pipelines.nlp import TextRankingPipeline
|
|
|
|
|
from modelscope.preprocessors import TextRankingPreprocessor
|
2022-09-10 15:59:56 +08:00
|
|
|
from modelscope.utils.constant import Tasks
|
|
|
|
|
from modelscope.utils.test_utils import test_level
|
|
|
|
|
|
|
|
|
|
|
2022-10-22 17:12:48 +08:00
|
|
|
class TextRankingTest(unittest.TestCase):
|
2022-10-24 23:41:20 +08:00
|
|
|
models = [
|
|
|
|
|
'damo/nlp_corom_passage-ranking_english-base',
|
|
|
|
|
'damo/nlp_rom_passage-ranking_chinese-base'
|
|
|
|
|
]
|
|
|
|
|
|
2022-09-10 15:59:56 +08:00
|
|
|
inputs = {
|
|
|
|
|
'source_sentence': ["how long it take to get a master's degree"],
|
|
|
|
|
'sentences_to_compare': [
|
|
|
|
|
"On average, students take about 18 to 24 months to complete a master's degree.",
|
|
|
|
|
'On the other hand, some students prefer to go at a slower pace and choose to take '
|
|
|
|
|
'several years to complete their studies.',
|
|
|
|
|
'It can take anywhere from two semesters'
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@unittest.skipUnless(test_level() >= 2, 'skip test in current test level')
|
|
|
|
|
def test_run_by_direct_model_download(self):
|
2022-10-24 23:41:20 +08:00
|
|
|
for model_id in self.models:
|
|
|
|
|
cache_path = snapshot_download(model_id)
|
|
|
|
|
tokenizer = TextRankingPreprocessor(cache_path)
|
|
|
|
|
model = TextRanking.from_pretrained(cache_path)
|
|
|
|
|
pipeline1 = TextRankingPipeline(model, preprocessor=tokenizer)
|
|
|
|
|
pipeline2 = pipeline(
|
|
|
|
|
Tasks.text_ranking, model=model, preprocessor=tokenizer)
|
|
|
|
|
print(f'sentence: {self.inputs}\n'
|
|
|
|
|
f'pipeline1:{pipeline1(input=self.inputs)}')
|
|
|
|
|
print()
|
|
|
|
|
print(f'pipeline2: {pipeline2(input=self.inputs)}')
|
2022-09-10 15:59:56 +08:00
|
|
|
|
|
|
|
|
@unittest.skipUnless(test_level() >= 0, 'skip test in current test level')
|
|
|
|
|
def test_run_with_model_from_modelhub(self):
|
2022-10-24 23:41:20 +08:00
|
|
|
for model_id in self.models:
|
|
|
|
|
model = Model.from_pretrained(model_id)
|
|
|
|
|
tokenizer = TextRankingPreprocessor(model.model_dir)
|
|
|
|
|
pipeline_ins = pipeline(
|
|
|
|
|
task=Tasks.text_ranking, model=model, preprocessor=tokenizer)
|
|
|
|
|
print(pipeline_ins(input=self.inputs))
|
2022-09-10 15:59:56 +08:00
|
|
|
|
|
|
|
|
@unittest.skipUnless(test_level() >= 1, 'skip test in current test level')
|
|
|
|
|
def test_run_with_model_name(self):
|
2022-10-24 23:41:20 +08:00
|
|
|
for model_id in self.models:
|
|
|
|
|
pipeline_ins = pipeline(task=Tasks.text_ranking, model=model_id)
|
|
|
|
|
print(pipeline_ins(input=self.inputs))
|
2022-09-10 15:59:56 +08:00
|
|
|
|
|
|
|
|
@unittest.skipUnless(test_level() >= 2, 'skip test in current test level')
|
|
|
|
|
def test_run_with_default_model(self):
|
2022-10-22 17:12:48 +08:00
|
|
|
pipeline_ins = pipeline(task=Tasks.text_ranking)
|
2022-09-10 15:59:56 +08:00
|
|
|
print(pipeline_ins(input=self.inputs))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
|
unittest.main()
|