sheryc/Qwen2.5-7B-Instruct-CARE
Text Generation • 8B • Updated • 9 • 1
Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.
This dataset is a processed version of DROP (Discrete Reasoning Over Paragraphs) adapted for training language models with native retrieval-augmented reasoning capabilities in the CARE framework. It serves as the "easy" dataset (D_easy) in the curriculum learning strategy for reinforcement learning training.
section_id: Unique identifier for the passage sectionquery_id: Unique identifier for the questionpassage: Original paragraph containing information needed to answerquestion: Question requiring discrete reasoning over the passageanswers_spans: Dictionary containing:spans: List of answer text spanstypes: List of answer types (e.g., number, date, span)context: Formatted context for model inputprompt: Complete prompt combining context and questionanswer: Processed answer stringanswer_type: Type classification of the answer{
"passage": "Hoping to rebound from their loss to the Patriots, the Raiders stayed at home for a Week 16 duel with the Houston Texans...",
"question": "Who scored the first touchdown of the game?",
"answer": "Chaz Schilens",
"answer_type": "span",
"context": "Context: Hoping to rebound from their loss to the Patriots...",
"prompt": "Context: [passage]\n\nQuestion: Who scored the first touchdown of the game?"
}
| Split | Number of Examples |
|---|---|
| Train | 77,409 |
| Validation | 9,536 |
from datasets import load_dataset
dataset = load_dataset("sheryc/DROP_care")
train_data = dataset["train"]
val_data = dataset["validation"]
# Example usage in curriculum learning
class CurriculumTrainer:
def __init__(self):
self.drop_data = load_dataset("sheryc/DROP_care")["train"]
self.msmarco_data = load_dataset("sheryc/MSMARCO_care")["train"]
def get_batch(self, step, total_steps):
# Linear curriculum: start with DROP, gradually add MS MARCO
alpha = max(0, 1 - step / total_steps)
if random.random() < alpha:
return self.sample_from_drop()
else:
return self.sample_from_msmarco()
Please refer to the original DROP dataset license.
If you use this dataset, please cite both the original DROP paper and the CARE paper:
@inproceedings{wang2025care,
title={Improving Context Fidelity via Native Retrieval-Augmented Reasoning},
author={Wang, Suyuchen and Wang, Jinlin and Wang, Xinyu and Li, Shiqi and Tang, Xiangru and Hong, Sirui and Chang, Xiao-Wen and Wu, Chenglin and Liu, Bang},
booktitle={Proceedings of the 2025 Conference on Empirical Methods in Natural Language Processing},
year={2025}
}
@inproceedings{Dua2019DROP,
author={Dheeru Dua and Yizhong Wang and Pradeep Dasigi and Gabriel Stanovsky and Sameer Singh and Matt Gardner},
title={DROP: A Reading Comprehension Benchmark Requiring Discrete Reasoning Over Paragraphs},
booktitle={Proc. of NAACL},
year={2019}
}
For questions about the dataset or to report issues, please visit the CARE project homepage or contact the authors.