summarization-250k
收藏资源简介:
summarization-250k是一个面向文档摘要任务的英文数据集,旨在将源文档转化为摘要、关键点或亮点。数据集包含两个子集:训练集(train)包含269,939条来自英语新闻文章的样本;长文档集(long)包含60,000条来自科学/技术论文等长篇文档的样本,每条文档长度通常为8k-16k tokens。每条样本包含五个字段:id(示例ID)、task(任务类型,可选summarization、keypoints或highlights)、system(摘要助手指令)、user(仅包含文档文本)、assistant(生成的摘要、关键点或亮点)。数据以JSON Lines和Parquet格式提供,用户字段不包含额外提示或聊天模板标签。该数据集适用于文本摘要、关键点提取和亮点生成等自然语言处理任务。
summarization-250k is an English dataset for document summarization tasks, aiming to convert source documents into summaries, key points, or highlights. The dataset contains two subsets: the training set (train) includes 269,939 samples from English news articles; the long document set (long) includes 60,000 samples from long documents such as scientific/technical papers, with each document typically 8k-16k tokens. Each sample contains five fields: id (example ID), task (task type, optional summarization, keypoints, or highlights), system (summarization assistant instructions), user (only document text), and assistant (generated summary, key points, or highlights). Data is provided in JSON Lines and Parquet formats, and the user field does not contain extra prompts or chat template tags. This dataset is suitable for NLP tasks such as text summarization, key point extraction, and highlight generation.
数据集概述
- 数据集名称:
summarization-250k - 许可证:Apache-2.0
- 任务类别:文本摘要(Summarization)
- 语言:英语(en)
- 规模:10万至100万条样本
数据集内容
该数据集包含文档-摘要对,每一行包含一个源文档及其对应的凝练文本(如摘要、要点或高亮)。task 字段用于区分生成的文本类型:summarization(摘要)、keypoints(要点)或 highlights(高亮)。
数据划分
| 划分名称 | 样本数量 | 数据来源 |
|---|---|---|
train |
269,939 | 英文新闻文章 |
long |
60,000 | 长文英文文档(如科学/技术论文,通常为8000–16000词元) |
可通过 load_dataset("domofon/summarization-250k", split="train") 或 split="long" 加载相应划分。
数据格式
数据提供 JSON Lines(data/{split}.json)与 Parquet(data/{split}.parquet)两种格式,二者列结构一致。Hub 查看器使用 Parquet 格式。
| 字段名 | 内容说明 |
|---|---|
system |
摘要助手的指令文本 |
user |
仅包含文档文本 |
assistant |
生成的凝练文本(摘要/要点/高亮) |
task |
任务类型:summarization、keypoints 或 highlights |
id |
示例唯一标识符 |
user 字段即文档本身,不包含额外提示词或对话模板标签。




