 [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  [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 |
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- # Copyright (c) Alibaba, Inc. and its affiliates.
- import shutil
- import unittest
-
- from modelscope.hub.snapshot_download import snapshot_download
- from modelscope.models import Model
- from modelscope.models.nlp import BertForSentenceEmbedding
- from modelscope.pipelines import pipeline
- from modelscope.pipelines.nlp import SentenceEmbeddingPipeline
- from modelscope.preprocessors import SentenceEmbeddingPreprocessor
- from modelscope.utils.constant import Tasks
- from modelscope.utils.test_utils import test_level
-
-
- class SentenceEmbeddingTest(unittest.TestCase):
- model_id = 'damo/nlp_corom_sentence-embedding_english-base'
- 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'
- ]
- }
-
- inputs2 = {
- '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."
- ]
- }
-
- inputs3 = {
- 'source_sentence': ["how long it take to get a master's degree"],
- 'sentences_to_compare': []
- }
-
- @unittest.skipUnless(test_level() >= 2, 'skip test in current test level')
- def test_run_by_direct_model_download(self):
- cache_path = snapshot_download(self.model_id)
- tokenizer = SentenceEmbeddingPreprocessor(cache_path)
- model = BertForSentenceEmbedding.from_pretrained(cache_path)
- pipeline1 = SentenceEmbeddingPipeline(model, preprocessor=tokenizer)
- pipeline2 = pipeline(
- Tasks.sentence_embedding, model=model, preprocessor=tokenizer)
- print(f'inputs: {self.inputs}\n'
- f'pipeline1:{pipeline1(input=self.inputs)}')
- print()
- print(f'pipeline2: {pipeline2(input=self.inputs)}')
- print()
- print(f'inputs: {self.inputs2}\n'
- f'pipeline1:{pipeline1(input=self.inputs2)}')
- print()
- print(f'pipeline2: {pipeline2(input=self.inputs2)}')
- print(f'inputs: {self.inputs3}\n'
- f'pipeline1:{pipeline1(input=self.inputs3)}')
- print()
- print(f'pipeline2: {pipeline2(input=self.inputs3)}')
-
- @unittest.skipUnless(test_level() >= 0, 'skip test in current test level')
- def test_run_with_model_from_modelhub(self):
- model = Model.from_pretrained(self.model_id)
- tokenizer = SentenceEmbeddingPreprocessor(model.model_dir)
- pipeline_ins = pipeline(
- task=Tasks.sentence_embedding, model=model, preprocessor=tokenizer)
- print(pipeline_ins(input=self.inputs))
-
- @unittest.skipUnless(test_level() >= 1, 'skip test in current test level')
- def test_run_with_model_name(self):
- pipeline_ins = pipeline(
- task=Tasks.sentence_embedding, model=self.model_id)
- print(pipeline_ins(input=self.inputs))
-
- @unittest.skipUnless(test_level() >= 2, 'skip test in current test level')
- def test_run_with_default_model(self):
- pipeline_ins = pipeline(task=Tasks.sentence_embedding)
- print(pipeline_ins(input=self.inputs))
-
-
- if __name__ == '__main__':
- unittest.main()
|