modelscope / data-juicer

A one-stop data processing system to make data higher-quality, juicier, and more digestible for (multimodal) LLMs! 🍎 🍋 🌽 ➡️ ➡️🍸 🍹 🍷为大模型提供更高质量、更丰富、更易”消化“的数据!
Apache License 2.0
2.96k stars 178 forks source link

How to use 'chinese_convert_mapper' ? #458

Open abchbx opened 4 weeks ago

abchbx commented 4 weeks ago

Before Asking 在提问之前

Search before asking 先搜索,再提问

Question

我尝试用 chinese_convert_mapper 将数据集https://www.modelscope.cn/datasets/Moemuu/Muice-Dataset/file/view/master?fileName=train.jsonl&id=11077&status=1 转换为繁体,

Additional 额外信息

No response

HYLcool commented 2 weeks ago

嗨 @abchbx ,感谢你的关注与使用~

如需要将中文简体文本转换为繁体,可在配置chinese_convert_mapper算子时将mode参数设置为s2t,具体支持的mode选项可参考该算子的API文档

abchbx commented 2 weeks ago

感谢您的回答,但是我是按照配置设置了s2t,但是生成的文本并没用转换为繁体,以下是我的参数:

abchbx commented 2 weeks ago

全局参数​

project_name: 'knowledge' dataset_path: '/mnt/workspace/zh.jsonl' # 你的数据集目录或文件的路径​ np: 8 # 处理数据集的子进程数量​​ text_keys: 'text' # 数据集文件中文本的键​ export_path: '/mnt/workspace/zh_12.jsonl' # 保存处理后数据集的路径​

Process​

一系列处理操作及其参数的列表​

process:

HYLcool commented 2 weeks ago

注意到该数据集中包含有效文本的字段为"prompt"和"respond",因此你需要将配置文件中text_keys这个参数设为其中之一后这些算子才会对其中的字段进行处理