Datasets:

Modalities:
Text
Formats:
json
ArXiv:
Libraries:
Datasets
pandas
License:
Dataset Viewer
The dataset viewer is not available for this dataset.
Unexpected token '<', "<html> <h"... is not valid JSON

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.

MSRS: Evaluating Multi-Source Retrieval-Augmented Generation

πŸ“„ Paper | πŸ’» Code

This paper introduces a scalable framework for constructing evaluation benchmarks that challenge RAG systems to integrate information across distinct sources and generate long-form responses. Using our framework, we build two new benchmarks on Multi-Source Retrieval and Synthesis: MSRS-Story and MSRS-Meet.

πŸš€ Quickstart

Load the corpora for MSRS-Story and MSRS-Meet:

from datasets import load_dataset

story_corpus = load_dataset("yale-nlp/MSRS", "story-corpus", split="corpus")
meeting_corpus = load_dataset("yale-nlp/MSRS", "meeting-corpus", split="corpus")

Corpus Dataset Example:

{
    "id": // Unique ID for the document
    "text": // Document text
}

Load the query-answer pairs for MSRS-Story and MSRS-Meet (available splits: train, test, and validation):

from datasets import load_dataset

story_qa = load_dataset("yale-nlp/MSRS", "story-qa")
meeting_qa = load_dataset("yale-nlp/MSRS", "meeting-qa")

QA Dataset Example:

{
    "id": // Unique ID for the query
    "query": // Query text
    "gold_documents": // List of gold document IDs
    "answer": // List of answer summaries
}
Downloads last month
59

Paper for yale-nlp/MSRS