Skip to content

Latest commit

 

History

History
313 lines (252 loc) · 10.7 KB

multi_turn_conversation.md

File metadata and controls

313 lines (252 loc) · 10.7 KB

多轮对话 data pipeline

多轮对话指令微调旨在提升模型的多轮对话能力,其数据处理流程可以分为以下两部分:

  1. 按照相应数据集格式构造数据
  2. 向数据集中插入对话模板(可选)

XTuner 支持使用 HuggingFace Hub 数据集或自定义数据集进行 SFT(Supervised FineTune)。二者的主要区别在于,使用 HuggingFace Hub 数据集时需要将原始数据映射为 XTuner 定义的多轮对话数据格式,而对于自定义数据集则推荐用户按照多轮对话数据格式构造数据集。

使用 HuggingFace Hub 数据集

Step 1, 映射原始数据集为标准格式

由于不同数据集的格式各有不同,因此需要将原始数据映射为 XTuner 定义的多轮对话数据格式。XTuner 支持通过 map function 来实现格式的映射。下面以 oasst1 数据集为例介绍如何实现数据映射。

oasst1 数据集格式如下所示:

>>> from datasets import load_dataset

>>> ds = load_dataset(path='timdettmers/openassistant-guanaco')
>>> ds['train']
Dataset({
    features: ['text'],
    num_rows: 9846
})
>>> ds['train'][0]['text']
'### Human: xxx ### Assistant: xxx ###Human: xxx ###Assistant: xxx'

由此可见,oasst1 数据集既可以当做增量预训练数据集让模型学会一些基本的语言知识,又可以在经过一些处理后作为多轮对话数据集培养模型的多轮对话能力。多轮对话数据格式中介绍了多轮对话指令微调过程中,数据格式应该为:

[{
    "conversation":[
        {
            "input": "xxx",
            "output": "xxx"
        },
        {
            "input": "xxx",
            "output": "xxx"
        }
    ]
},
{
    "conversation":[
        {
            "input": "xxx",
            "output": "xxx"
        },
        {
            "input": "xxx",
            "output": "xxx"
        }
    ]
}]

因此,可以通过下面的 map function 将原始数据映射为标准格式:

# 假设将该函数存放在./map_fn.py文件中
def oasst1_multi_turns_map_fn(example):
    r"""
    Example before preprocessing:
        example['text'] = '### Human: Can you explain xxx'
                          '### Assistant: Sure! xxx'
                          '### Human: I didn't understand how xxx'
                          '### Assistant: It has to do with a process xxx.'

    Example after preprocessing:
        example['conversation'] = [
            {
                'input': 'Can you explain xxx',
                'output': 'Sure! xxx'
            },
            {
                'input': 'I didn't understand how xxx',
                'output': 'It has to do with a process xxx.'
            }
        ]
    """
    data = []
    for sentence in example['text'].strip().split('###'):
        sentence = sentence.strip()
        if sentence[:6] == 'Human:':
            data.append(sentence[6:].strip())
        elif sentence[:10] == 'Assistant:':
            data.append(sentence[10:].strip())
    if len(data) % 2:
        # The last round of conversation solely consists of input
        # without any output.
        # Discard the input part of the last round, as this part is ignored in
        # the loss calculation.
        data.pop()
    conversation = []
    for i in range(0, len(data), 2):
        single_turn_conversation = {'input': data[i], 'output': data[i + 1]}
        conversation.append(single_turn_conversation)
    return {'conversation': conversation}

Step 2, 列出候选模型名字

XTuner 提供多个开箱即用的配置文件,用户可以通过下列命令查看:

xtuner list-cfg -p internlm

-p 为模糊查找,若想训练其他模型,可以修改 internlm 为 XTuner 支持的其他模型名称。

Step 3, 复制 config 文件

如果所提供的配置文件不能满足使用需求,请导出所提供的配置文件并进行相应更改:

xtuner copy-cfg ${CONFIG_NAME} ${SAVE_DIR}

例如通过下列命令将名为 internlm_7b_qlora_oasst1_e3 的 config 导出至当前目录下:

xtuner copy-cfg internlm_7b_qlora_oasst1_e3 .

Step 4, 设置对话模板(可选)

对话模板是指用于生成对话的预定义模式或结构。这些模板可以包含问句、回答或多轮对话中的不同角色的发言。在训练数据集中加入对话模板有利于模型生成有结构和逻辑的对话,并提供更准确、一致和合理的回答。

不同数据集、不同语言模型可能对应着不同的对话模板。例如,oasst1 数据集的对话模板如下:

### Human:
xxx

### Assistant:
xxx

XTuner提供了一系列对话模板,你可以在 xtuner/utils/templates.py 中找到。其中,INSTRUCTION_STARTINSTRUCTION 分别代表第一轮对话和后续若干轮对话所使用的对话模板。

Step 5, 修改 config 文件

对 Step 3 复制得到的 config 文件需要进行如下修改:

  1. 导入 Step 1 中实现的 map function oasst1_multi_turns_map_fn
  2. oasst1_multi_turns_map_fn 替换 train_dataset 中的 dataset_map_fn
  3. (可选)通过 prompt_template = PROMPT_TEMPLATE.openassistant 来设置 oasst1 数据集对应的对话模板。
  4. 调整原始数据集的路径,关于 load_dataset 的相关操作可以参考用户文档
from xtuner.dataset import process_hf_dataset
from datasets import load_dataset
- from xtuner.dataset.map_fns import oasst1_map_fn, template_map_fn_factory
+ from xtuner.dataset.map_fns import template_map_fn_factory
+ from mmengine.config import read_base
+ with read_base():
+     from .map_fn import oasst1_multi_turns_map_fn
...
#######################################################################
#                          PART 1  Settings                           #
#######################################################################
- data_path = 'timdettmers/openassistant-guanaco'
+ data_path = 'path/to/your/data'

+ prompt_template = PROMPT_TEMPLATE.openassistant
...
#######################################################################
#                      STEP 3  Dataset & Dataloader                   #
#######################################################################
train_dataset = dict(
    type=process_hf_dataset,
    dataset=dict(type=load_dataset, path=data_path),
    tokenizer=tokenizer,
    max_length=max_length,
+   dataset_map_fn=oasst1_multi_turns_map_fn,
+   template_map_fn=dict(
+       type=template_map_fn_factory, template=prompt_template),
    remove_unused_columns=True,
    shuffle_before_pack=True,
    pack_to_max_length=pack_to_max_length)

train_dataloader = dict(
    batch_size=batch_size,
    num_workers=dataloader_num_workers,
    dataset=train_dataset,
    sampler=dict(type=DefaultSampler, shuffle=True),
    collate_fn=dict(type=default_collate_fn))
...

Step 6, 打印数据集(可选)

在修改配置文件后,可以打印处理后数据集的第一条数据,以验证数据集是否正确构建。

xtuner log-dataset $CONFIG

其中 $CONFIG 是 Step 5 修改过的 config 的文件路径。

使用自定义数据集

在使用自定义多轮对话数据集进行指令微调时,我们推荐将数据集构造为 XTuner 定义的多轮对话数据格式。若自定义数据集格式为 oasst1 等其他格式,可参考使用 HuggingFace Hub 数据集一节。

Step 1, 数据集准备

按照 XTuner 定义的多轮对话数据格式准备自定义数据:

[{
    "conversation":[
        {
            "input": "xxx",
            "output": "xxx"
        },
        {
            "input": "xxx",
            "output": "xxx"
        }
    ]
},
{
    "conversation":[
        {
            "input": "xxx",
            "output": "xxx"
        },
        {
            "input": "xxx",
            "output": "xxx"
        }
    ]
}]

Step 2, 列出候选模型名字

xtuner list-cfg -p internlm

-p 为模糊查找,若想训练其他模型,可以修改 internlm 为 XTuner 支持的其他模型名称。

Step 3, 复制 config 文件

xtuner copy-cfg internlm_7b_qlora_oasst1_e3 .

Step 4, 设置对话模板(可选)

参考设置对话模板

Step 5, 修改 config 文件

对 Step 3 复制得到的 config 文件需要进行如下修改:

  1. 调整原始数据集的路径
  2. 由于数据集格式已经是标准格式了,需要将 train_dataset 中的 dataset_map_fn 置为 None
  3. 设置对话模板
from xtuner.dataset import process_hf_dataset
from datasets import load_dataset
- from xtuner.dataset.map_fns import oasst1_map_fn, template_map_fn_factory
+ from xtuner.dataset.map_fns import template_map_fn_factory
...
#######################################################################
#                          PART 1  Settings                           #
#######################################################################
- data_path = 'timdettmers/openassistant-guanaco'
+ data_path = 'path/to/your/json/data'

+ prompt_template = PROMPT_TEMPLATE.openassistant
...
#######################################################################
#                      STEP 3  Dataset & Dataloader                   #
#######################################################################
train_dataset = dict(
    type=process_hf_dataset,
-   dataset=dict(type=load_dataset, path=data_path),
+   dataset=dict(
+       type=load_dataset, path='json', data_files=dict(train=data_path)),
    tokenizer=tokenizer,
    max_length=max_length,
+   dataset_map_fn=None,
+   template_map_fn=dict(
+       type=template_map_fn_factory, template=prompt_template),
    remove_unused_columns=True,
    shuffle_before_pack=True,
    pack_to_max_length=pack_to_max_length)

train_dataloader = dict(
    batch_size=batch_size,
    num_workers=dataloader_num_workers,
    dataset=train_dataset,
    sampler=dict(type=DefaultSampler, shuffle=True),
    collate_fn=dict(type=default_collate_fn))
...

Step 6, 检查数据集(可选)

在修改配置文件后,可以运行xtuner/tools/check_custom_dataset.py脚本验证数据集是否正确构建。

xtuner check-custom-dataset $CONFIG

其中 $CONFIG 是 Step 5 修改过的 config 的文件路径。