qwen_continuation_dataset
收藏资源简介:
Qwen Continuation数据集是一个专门用于文本生成任务的英语数据集,旨在支持文本续写研究。该数据集包含235个示例,分为42个数据分片,采用Apache 2.0许可证。数据来源于fineweb和math两个原始数据集,每个样本包括7个关键字段:source_id(源文档ID)、source_name(源数据集名称)、prefix_text(输入前缀)、real_continuation(原始续写内容)、teacher_continuation(模型生成的续写内容)、synthetic_text(前缀与模型续写的组合文本)以及generation(生成设置和逐令牌熵信息)。该数据集适用于文本生成模型的训练、评估和续写质量对比分析等任务,特别适合研究模型生成文本与人类撰写文本之间的差异。数据以JSONL格式存储,可通过Hugging Face的datasets库直接加载使用。
The Qwen Continuation dataset is an English dataset specifically designed for text generation tasks, focusing on text continuation research. It contains 235 examples divided into 42 data splits and is licensed under Apache 2.0. The data is sourced from two original datasets: fineweb and math. Each sample includes 7 key fields: source_id (source document ID), source_name (source dataset name), prefix_text (input prefix), real_continuation (original continuation content), teacher_continuation (model-generated continuation content), synthetic_text (combined text of prefix and model continuation), and generation (generation settings and per-token entropy information). This dataset is suitable for tasks such as training and evaluating text generation models, as well as comparative analysis of continuation quality, particularly for studying differences between model-generated and human-written text. The data is stored in JSONL format and can be directly loaded using the Hugging Face datasets library.
数据集概述
数据集名称:Qwen Continuation Dataset
许可证:Apache-2.0
语言:英语
任务类型:文本生成(text-generation)
数据集结构:默认配置(default),训练集以 JSONL 格式存储,路径为 data/*.jsonl。
数据集规模
| 统计项 | 数值 |
|---|---|
| 分片数 | 42 |
| 样本总数 | 235 |
| 每个分片大小 | 1 |
| 更新日期 | 2026-07-05 14:47 UTC |
数据字段说明
| 字段名 | 描述 |
|---|---|
source_id |
源文档 ID |
source_name |
源数据集名称(fineweb 或 math) |
prefix_text |
输入前缀 |
real_continuation |
原始数据集中的延续内容 |
teacher_continuation |
模型生成的延续内容 |
synthetic_text |
前缀 + 教师模型生成的延续内容 |
generation |
生成设置及每个 token 的熵值 |
生成工具
该数据集使用 qwen_continuation_dataset 项目生成。
加载方式
python from datasets import load_dataset
常规加载
ds = load_dataset("Zhuzhik/qwen_continuation_dataset")
流式加载
ds = load_dataset("Zhuzhik/qwen_continuation_dataset", streaming=True)




