115 Star 802 Fork 454

MindSpore / mindformers

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
qwen1_5.md 11.88 KB
一键复制 编辑 原始数据 按行查看 历史

通义千问1.5

模型描述

通义千问是阿里云研发的通义千问大模型系列。Qwen1.5是Qwen2的beta版本, 基于Transformer的大语言模型, 在超大规模的预训练数据上进行训练得到。预训练数据类型多样,覆盖广泛,包括大量网络文本、专业书籍、代码等。

@article{qwen,
  title={Qwen Technical Report},
  author={Jinze Bai and Shuai Bai and Yunfei Chu and Zeyu Cui and Kai Dang and Xiaodong Deng and Yang Fan and Wenbin Ge and Yu Han and Fei Huang and Binyuan Hui and Luo Ji and Mei Li and Junyang Lin and Runji Lin and Dayiheng Liu and Gao Liu and Chengqiang Lu and Keming Lu and Jianxin Ma and Rui Men and Xingzhang Ren and Xuancheng Ren and Chuanqi Tan and Sinan Tan and Jianhong Tu and Peng Wang and Shijie Wang and Wei Wang and Shengguang Wu and Benfeng Xu and Jin Xu and An Yang and Hao Yang and Jian Yang and Shusheng Yang and Yang Yao and Bowen Yu and Hongyi Yuan and Zheng Yuan and Jianwei Zhang and Xingxuan Zhang and Yichang Zhang and Zhenru Zhang and Chang Zhou and Jingren Zhou and Xiaohuan Zhou and Tianhang Zhu},
  journal={arXiv preprint arXiv:2309.16609},
  year={2023}
}

仓库介绍

Qwen1.5 基于 MindFormers 实现,主要涉及的文件有:

  1. 模型具体实现:

    qwen1_5
      └── qwen1_5_tokenizer.py          # tokenizer
  2. 模型配置:

    qwen1_5
      ├── finetune_qwen1_5_72b.yaml         # 72B 全参微调启动配置
      ├── predict_qwen1_5_14b.yaml          # 14B 在线推理启动配置
      └── predict_qwen1_5_72b.yaml          # 72B 在线推理启动配置
  3. 环境准备和任务启动脚本:

    qwen1_5
      ├── alpaca_converter.py           # alpaca数据集格式转换脚本
      ├── qwen1_5_preprocess.py         # 数据集预处理脚本
      ├── convert_weight.py             # 权重转换脚本
      └── run_qwen1_5.py                # Qwen高阶接口脚本

前期准备

环境要求

MindFormers安装以及软硬件配套关系参考MindFormers安装版本匹配关系

注:环境搭建参考 MindSpore官网,安装MindSpore及CANN社区版配套版本。

模型权重准备

torch权重转mindspore权重

从huggingface下载预训练权重后根据以下步骤进行权重转换,需要下载整个工程,huggingface权重的链接如下:

: 请安装convert_weight.py依赖包。后续所用的vocab.json和merges.txt文件在此工程中获取。

pip install torch transformers transformers_stream_generator einops accelerate
# transformers版本不低于4.37.2

下载完成后,运行convert_weight.py转换脚本,将huggingface的权重转换为完整的ckpt权重。

python research/qwen1_5/convert_weight.py \
--torch_ckpt_dir <torch_ckpt_dir> \
--mindspore_ckpt_path <mindspore_ckpt_path>
# 参数说明:
# torch_ckpt_dir: 预训练权重文件所在的目录,此参数必须。
# mindspore_ckpt_path: 转换后的输出文件存放路径。可选,如果不给出,默认为`./transform.ckpt`

mindspore权重转torch权重

在生成mindspore权重之后如需使用torch运行,可根据如下命令转换:

python convert_reversed.py --mindspore_ckpt_path /path/your.ckpt --torch_ckpt_path /path/your.bin
# 参数说明:
# mindspore_ckpt_path: 待转换的mindspore权重,此参数必须。
# torch_ckpt_path: 转换后的输出文件存放路径,此参数必须。

数据集准备

目前提供alpaca数据集的预处理脚本用于全参微调任务。

数据集下载链接如下:

执行alpaca_converter.py,将原始数据集转换为指定格式。

python qwen1_5/alpaca_converter.py \
--data_path path/alpaca_data.json \
--output_path /path/alpaca-data-messages.json
# 参数说明
# data_path: 存放alpaca数据的路径
# output_path: 输出转换后对话格式的数据路径

转换后格式样例:

  {
    "type": "chatml",
    "messages": [
      {
        "role": "system",
        "content": "You are a helpful assistant."
      },
      {
        "role": "user",
        "content": "Give three tips for staying healthy."
      },
      {
        "role": "assistant",
        "content": "1.Eat a balanced diet and make sure to include plenty of fruits and vegetables. \n2. Exercise regularly to keep your body active and strong. \n3. Get enough sleep and maintain a consistent sleep schedule."
      }
    ],
    "source": "unknown"
  },

执行qwen1_5_preprocess.py,进行数据预处理和Mindrecord数据生成。

python qwen1_5/qwen1_5_preprocess.py \
--input_glob /path/alpaca-data-messages.json \
--vocab_file /path/vocab.json \
--merges_file /path/merges.txt \
--seq_length 2048 \
--output_file /path/alpaca-messages.mindrecord

模型权重切分与合并

从hugging face或官方github仓库转换而来的权重通常是单卡权重,基于该权重进行多卡微调,评测,推理,涉及ckpt从单机策略到分布式策略的切换。

通常训练采用分布式训练,基于该权重进行评测,推理多采用单卡,涉及ckpt从分布式策略到单机策略的切换。

以上涉及到ckpt的单卡,多卡转换,详细教程请参考特性文档模型权重切分与合并

全参微调

微调性能

config task Datasets SeqLength metric phase score performance(tokens/s/p)
qwen1.5-72b text_generation alpaca 2048 - finetune - 180.2

操作步骤

请参照数据集准备章节获取mindrecord格式的alpaca数据集,参照模型权重准备章节获取权重。

  1. 当前支持模型已提供yaml文件,下文以Qwen-72B为例,即使用finetune_qwen1_5_72b.yaml配置文件进行介绍,请根据实际使用模型更改配置文件。

    当前模型已支持使用Flash Attention算法进行全参微调,请参考 Flash Attention使用文档 warning: cann7.2, ms2.3, qwen1.5训练bf16, loss溢出问题规避方案

  2. 设置如下环境变量:

    export MS_ASCEND_CHECK_OVERFLOW_MODE=INFNAN_MODE
  3. 修改finetune_qwen1_5_72b.yaml中相关配置,默认开启自动权重转换,使用完整权重。

    load_checkpoint: '/path/model_dir' # 使用完整权重,权重按照`model_dir/rank_0/xxx.ckpt`格式存放
    auto_trans_ckpt: True              # 打开自动权重转换
    use_parallel: True
    run_mode: 'finetune'
    
    model_config:
       seq_length: 2048 # 与数据集长度保持相同
    
    train_dataset: &train_dataset
      data_loader:
        type: MindDataset
        dataset_dir: "/path/alpaca.mindrecord"  # 配置训练数据集文件夹路径
    
    # 8卡分布式策略配置
    parallel_config:
      data_parallel: 1
      model_parallel: 8
      pipeline_stage: 4
      micro_batch_num: 48
      vocab_emb_dp: True
      gradient_aggregation_group: 4
  4. 启动微调任务。

在多机上同时拉起任务,将参数MASTER_ADDR设置为主节点的ip地址, 所有节点设置的ip地址相同,不同节点之间仅参数NODE_RANK不同,具体可参考ms_run快速使用

# 节点0,节点ip为192.168.1.1,作为主节点,总共32卡且每个节点8卡
bash ../../scripts/msrun_launcher.sh "run_qwen1_5.py \
--config run_qwen1_5_72b.yaml \
--load_checkpoint /path/model_dir \
--use_parallel True \
--run_mode finetune \
--auto_trans_ckpt True \
--train_data /path/alpaca.mindrecord" \
32 8 192.168.1.1 8118 0 output/msrun_log False 300

# 节点1,节点ip为192.168.1.2,节点0与节点1启动命令仅参数NODE_RANK不同
bash ../../scripts/msrun_launcher.sh "run_qwen1_5.py \
--config run_qwen1_5_72b.yaml \
--load_checkpoint /path/model_dir \
--use_parallel True \
--run_mode finetune \
--auto_trans_ckpt True \
--train_data /path/alpaca.mindrecord" \
32 8 192.168.1.1 8118 1 output/msrun_log False 300

# 节点2,节点ip为192.168.1.3,节点0与节点2启动命令仅参数NODE_RANK不同
bash ../../scripts/msrun_launcher.sh "run_qwen1_5.py \
--config run_qwen1_5_72b.yaml \
--load_checkpoint /path/model_dir \
--use_parallel True \
--run_mode finetune \
--auto_trans_ckpt True \
--train_data /path/alpaca.mindrecord" \
32 8 192.168.1.1 8118 2 output/msrun_log False 300

# 节点3,节点ip为192.168.1.4,节点0与节点3启动命令仅参数NODE_RANK不同
bash ../../scripts/msrun_launcher.sh "run_qwen1_5.py \
--config run_qwen1_5_72b.yaml \
--load_checkpoint /path/model_dir \
--use_parallel True \
--run_mode finetune \
--auto_trans_ckpt True \
--train_data /path/alpaca.mindrecord" \
32 8 192.168.1.1 8118 3 output/msrun_log False 300

# 参数说明
# config: 配置文件路径
# load_checkpoint: 权重文件夹路径,权重按照'model_dir/rank_0/xxx.ckpt'格式存放
# auto_trans_ckpt: 自动权重转换开关
# run_mode: 运行模式,微调时设置为finetune
# train_data: 训练数据集文件夹路径

推理

大模型推理升级训推一体架构,实现脚本、分布式策略和运行时的统一,通过融合大算子降低推理时延,有效提升网络吞吐量。

注意事项:

  1. 当前支持模型已提供yaml文件,下文以Qwen1_5-72B为例,即使用predict_qwen1_5_72b.yaml配置文件进行介绍,请根据实际使用模型更改配置文件。

  2. 运行下面的代码需要在research/qwen1_5目录下,或者先将research/qwen1_5目录所在路径加入到PYTHONPATH环境变量中。

基于高阶接口推理

  • 多卡推理
  1. 主要参数配置参考:

    load_checkpoint: '/path/model_dir'       # 使用切分完的权重
    auto_trans_ckpt: False                   # 打开自动权重转换
    use_past: True                           # 使用增量推理
    use_parallel: True                       # 使用并行模式
    
    model:
      model_config:
        use_past: True
        is_dynamic: True
    
    processor:
      tokenizer:
        vocab_file: "/{path}/vocab.json"     # vocab.json文件路径
        merges_file: "/{path}/merges.txt"    # merges.txt文件路径
    
    # parallel of device num = 2
    parallel_config:
      data_parallel: 1
      model_parallel: 4
      pipeline_stage: 1
      micro_batch_num: 1
      vocab_emb_dp: True
      gradient_aggregation_group: 4

    :可配置model_config:param_init_typefloat32提高推理精度,但同时会影响在线推理性能。

  2. 启动推理:

    cd mindformers/research/qwen1_5
    # 推理命令中参数会覆盖yaml文件中的相同参数
    bash ../../scripts/msrun_launcher.sh "python run_qwen1_5.py \
    --config predict_qwen1_5_72b.yaml \
    --load_checkpoint /path/model_dir \
    --run_mode predict \
    --use_parallel True \
    --predict_data 帮助我制定一份去上海的旅游攻略 \
    --auto_trans_ckpt False" 4
    
    # 帮助我制定一份去上海的旅游攻略,包括景点、美食、住宿等信息……
Python
1
https://gitee.com/mindspore/mindformers.git
git@gitee.com:mindspore/mindformers.git
mindspore
mindformers
mindformers
r1.1.0

搜索帮助