You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

test_nli.py 3.1 kB

[to #42322933] NLP 1030 Refactor Features: 1. Refactor the directory structure of nlp models. All model files are placed into either the model folder or the task_model folder 2. Refactor all the comments to google style 3. Add detail comments to important tasks and nlp models, to list the description of the model, and its preprocessor&trainer 4. Model Exporting now supports a direct all to TorchModelExporter(no need to derive from it) 5. Refactor model save_pretrained method to support direct running(independent from trainer) 6. Remove the judgement of Model in the pipeline base class, to support outer register models running in our pipelines 7. Nlp trainer now has a NLPTrainingArguments class , user can pass arguments into the dataclass, and use it as a normal cfg_modify_fn, to simplify the operation of modify cfg. 8. Merge the BACKBONES and the MODELS, so user can get a backbone with the Model.from_pretrained call 9. Model.from_pretrained now support a task argument, so user can use a backbone and load it with a specific task class. 10. Support Preprocessor.from_pretrained method 11. Add standard return classes to important nlp tasks, so some of the pipelines and the models are independent now, the return values of the models will always be tensors, and the pipelines will take care of the conversion to numpy and the following stuffs. 12. Split the file of the nlp preprocessors, to make the dir structure more clear. Bugs Fixing: 1. Fix a bug that lr_scheduler can be called earlier than the optimizer's step 2. Fix a bug that the direct call of Pipelines (not from pipeline(xxx)) throws error 3. Fix a bug that the trainer will not call the correct TaskDataset class 4. Fix a bug that the internal loading of dataset will throws error in the trainer class Link: https://code.alibaba-inc.com/Ali-MaaS/MaaS-lib/codereview/10490585
2 years ago
2 years ago
[to #42322933] NLP 1030 Refactor Features: 1. Refactor the directory structure of nlp models. All model files are placed into either the model folder or the task_model folder 2. Refactor all the comments to google style 3. Add detail comments to important tasks and nlp models, to list the description of the model, and its preprocessor&trainer 4. Model Exporting now supports a direct all to TorchModelExporter(no need to derive from it) 5. Refactor model save_pretrained method to support direct running(independent from trainer) 6. Remove the judgement of Model in the pipeline base class, to support outer register models running in our pipelines 7. Nlp trainer now has a NLPTrainingArguments class , user can pass arguments into the dataclass, and use it as a normal cfg_modify_fn, to simplify the operation of modify cfg. 8. Merge the BACKBONES and the MODELS, so user can get a backbone with the Model.from_pretrained call 9. Model.from_pretrained now support a task argument, so user can use a backbone and load it with a specific task class. 10. Support Preprocessor.from_pretrained method 11. Add standard return classes to important nlp tasks, so some of the pipelines and the models are independent now, the return values of the models will always be tensors, and the pipelines will take care of the conversion to numpy and the following stuffs. 12. Split the file of the nlp preprocessors, to make the dir structure more clear. Bugs Fixing: 1. Fix a bug that lr_scheduler can be called earlier than the optimizer's step 2. Fix a bug that the direct call of Pipelines (not from pipeline(xxx)) throws error 3. Fix a bug that the trainer will not call the correct TaskDataset class 4. Fix a bug that the internal loading of dataset will throws error in the trainer class Link: https://code.alibaba-inc.com/Ali-MaaS/MaaS-lib/codereview/10490585
2 years ago
2 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. # Copyright (c) Alibaba, Inc. and its affiliates.
  2. import unittest
  3. from modelscope.hub.snapshot_download import snapshot_download
  4. from modelscope.models import Model
  5. from modelscope.pipelines import pipeline
  6. from modelscope.pipelines.nlp import TextClassificationPipeline
  7. from modelscope.preprocessors import SequenceClassificationPreprocessor
  8. from modelscope.utils.constant import Tasks
  9. from modelscope.utils.demo_utils import DemoCompatibilityCheck
  10. from modelscope.utils.regress_test_utils import IgnoreKeyFn, MsRegressTool
  11. from modelscope.utils.test_utils import test_level
  12. class NLITest(unittest.TestCase, DemoCompatibilityCheck):
  13. def setUp(self) -> None:
  14. self.task = Tasks.nli
  15. self.model_id = 'damo/nlp_structbert_nli_chinese-base'
  16. sentence1 = '四川商务职业学院和四川财经职业学院哪个好?'
  17. sentence2 = '四川商务职业学院商务管理在哪个校区?'
  18. regress_tool = MsRegressTool(baseline=False)
  19. @unittest.skipUnless(test_level() >= 2, 'skip test in current test level')
  20. def test_run_with_direct_file_download(self):
  21. cache_path = snapshot_download(self.model_id)
  22. tokenizer = SequenceClassificationPreprocessor(cache_path)
  23. model = Model.from_pretrained(cache_path)
  24. pipeline1 = TextClassificationPipeline(model, preprocessor=tokenizer)
  25. pipeline2 = pipeline(Tasks.nli, model=model, preprocessor=tokenizer)
  26. print(f'sentence1: {self.sentence1}\nsentence2: {self.sentence2}\n'
  27. f'pipeline1:{pipeline1(input=(self.sentence1, self.sentence2))}')
  28. print(
  29. f'sentence1: {self.sentence1}\nsentence2: {self.sentence2}\n'
  30. f'pipeline1: {pipeline2(input=(self.sentence1, self.sentence2))}')
  31. @unittest.skipUnless(test_level() >= 2, 'skip test in current test level')
  32. def test_run_with_model_from_modelhub(self):
  33. model = Model.from_pretrained(self.model_id)
  34. tokenizer = SequenceClassificationPreprocessor(model.model_dir)
  35. pipeline_ins = pipeline(
  36. task=Tasks.nli, model=model, preprocessor=tokenizer)
  37. print(pipeline_ins(input=(self.sentence1, self.sentence2)))
  38. @unittest.skipUnless(test_level() >= 0, 'skip test in current test level')
  39. def test_run_with_model_name(self):
  40. pipeline_ins = pipeline(task=Tasks.nli, model=self.model_id)
  41. with self.regress_tool.monitor_module_single_forward(
  42. pipeline_ins.model,
  43. 'sbert_nli',
  44. compare_fn=IgnoreKeyFn('.*intermediate_act_fn')):
  45. print(pipeline_ins(input=(self.sentence1, self.sentence2)))
  46. @unittest.skipUnless(test_level() >= 2, 'skip test in current test level')
  47. def test_run_with_default_model(self):
  48. pipeline_ins = pipeline(task=Tasks.nli)
  49. print(pipeline_ins(input=(self.sentence1, self.sentence2)))
  50. @unittest.skip('demo compatibility test is only enabled on a needed-basis')
  51. def test_demo_compatibility(self):
  52. self.compatibility_check()
  53. if __name__ == '__main__':
  54. unittest.main()