| |
| |
| |
| """A one-line summary of the module or program, terminated by a period. |
| |
| Leave one blank line. The rest of this docstring should contain an |
| overall description of the module or program. Optionally, it may also |
| contain a brief description of exported classes and functions and/or usage |
| examples. |
| |
| Typical usage example: |
| |
| foo = ClassFoo() |
| bar = foo.FunctionBar() |
| """ |
|
|
| import sys |
| import os |
| |
| from transformers import HfArgumentParser |
|
|
| from lmflow.args import ( |
| ModelArguments, |
| DatasetArguments, |
| AutoArguments, |
| ) |
|
|
| from lmflow.datasets.dataset import Dataset |
| from lmflow.models.auto_model import AutoModel |
| from lmflow.pipeline.auto_pipeline import AutoPipeline |
|
|
|
|
| def main(): |
| |
| pipeline_name = "finetuner" |
| PipelineArguments = AutoArguments.get_pipeline_args_class(pipeline_name) |
|
|
| parser = HfArgumentParser((ModelArguments, DatasetArguments, PipelineArguments)) |
| if len(sys.argv) == 2 and sys.argv[1].endswith(".json"): |
| |
| |
| model_args, data_args, pipeline_args = parser.parse_json_file(json_file=os.path.abspath(sys.argv[1])) |
| else: |
| model_args, data_args, pipeline_args = parser.parse_args_into_dataclasses() |
|
|
| |
| finetuner = AutoPipeline.get_pipeline( |
| pipeline_name=pipeline_name, |
| model_args=model_args, |
| data_args=data_args, |
| pipeline_args=pipeline_args, |
| ) |
| dataset = Dataset(data_args) |
| model = AutoModel.get_model(model_args) |
| |
| data_args.bd_size = model.backend_model.config.bd_size |
| data_args.mask_id = model.tokenizer.encode("|<MASK>|")[0] |
|
|
| |
| tuned_model = finetuner.tune(model=model, dataset=dataset) |
|
|
|
|
| if __name__ == '__main__': |
| main() |
|
|