CoolFace
Datasetpublic

yuyijiong/context_qa_sum_qwen3_synthetic

Context-based QA and Summarization Synthetic Dataset Overview This dataset contains synthetic context-based question-answering (QA) and summarization data. The data was synthesized using: Source context: openbmb/Ultra-FineWeb Synthesis model: Qwen3-30B-A3B-Instruct-2507 Each context is obtained by taking the initial segment of raw pretraining text from Ultra-FineWeb, truncated to at most the corresponding number of tokens, while ensuring the truncation does not… See the full description on the dataset page: https://huggingface.co/datasets/yuyijiong/context_qa_sum_qwen3_synthetic.

sourceHugging Faceapache-2.0updated 6mo agoView on Hugging Face
5likes3.7kdownloads
Dataset Card

Context-based QA and Summarization Synthetic Dataset

Overview

This dataset contains synthetic context-based question-answering (QA) and summarization data. The data was synthesized using:

Each context is obtained by taking the initial segment of raw pretraining text from Ultra-FineWeb, truncated to at most the corresponding number of tokens, while ensuring the truncation does not occur in the middle of a sentence.

The dataset covers context-based QA and summarization tasks in both English and Chinese. It is organized into single-document and multi-document splits.


Dataset Structure

Single-Document Tasks

Single-document splits provide one source context per sample, with context lengths close to (and not exceeding) 128, 256, 512, or 1024 tokens. Each sample includes a question, an answer, and summaries derived from that context.

FolderLanguageContext length (tokens)# Samples
doc_sum_qa_shortsum_synthetic_text_128_enEnglish~1281,879,005
doc_sum_qa_shortsum_synthetic_text_128_zhChinese~1283,070,655
doc_sum_qa_shortsum_synthetic_text_256_enEnglish~2561,613,809
doc_sum_qa_shortsum_synthetic_text_256_zhChinese~2562,992,339
doc_sum_qa_shortsum_synthetic_text_512_enEnglish~5121,538,654
doc_sum_qa_shortsum_synthetic_text_512_zhChinese~5123,446,382
doc_complex_qa_shortsum_synthetic_text_1024_enEnglish~10241,597,716
doc_complex_qa_shortsum_synthetic_text_1024_zhChinese~10242,533,299

Column definitions (single-document):

ColumnDescription
text_128 / text_256 / text_512 / text_1024Source context (column name matches the target context length for that split).
questionA regular question grounded in this context.
answerA brief answer to the question.
summaryA summary of the context.
short_summaryA highly condensed summary of the context.

*Note on `doc_complex_qa_shortsum_synthetic_text_1024_ splits:** These 1024-token splits do **not** include a summary` column. The QA in these splits is complex QA—i.e., questions that require multi-step reasoning and are more challenging than the regular QA in the 128/256/512 splits.


Multi-Document Tasks

Multi-document splits provide a context formed by multiple documents, each of length approximately 128 tokens. Each sample includes multiple questions over the combined context, with answers and a short summary.

FolderLanguage# Samples
doc_multi_doc_multi_qa_short_sum_synthetic_text_128_enEnglish1,861,577
doc_multi_doc_multi_qa_short_sum_synthetic_text_128_zhChinese2,034,612

Column definitions (multi-document):

ColumnDescription
contextThe full context, composed of multiple documents of ~128 tokens each.
questionsMultiple regular questions about this context.
answersThe answer corresponding to each question.
short_summaryA highly condensed summary of the full context.
docsThe original documents used to form the context.
target_docsFor each question, the document(s) that the question is based on.

Intended Use