CoolFace
Datasetpublic

DinoStackAI/bioasq-rag-13b-resplit

BioASQ RAG 13B (Resplit) Reshuffled version of DinoStackAI/bioasq-rag-13b for Retrieval-Augmented Generation (RAG). All original train, dev and test queries were merged, shuffled with seed 42, and reassigned using: 0.2 of all queries → test 0.2 of the remaining queries → dev the rest → train The shared PubMed corpus is unchanged from the source dataset. Structure Subset Splits Description corpus train (default) PubMed abstracts shared across all query… See the full description on the dataset page: https://huggingface.co/datasets/DinoStackAI/bioasq-rag-13b-resplit.

sourceHugging Facecc-by-2.5updated 3mo agoView on Hugging Face
0likes91downloads
Dataset Card

BioASQ RAG 13B (Resplit)

Reshuffled version of `DinoStackAI/bioasq-rag-13b` for Retrieval-Augmented Generation (RAG).

All original train, dev and test queries were merged, shuffled with seed 42, and reassigned using:

  1. 1.0.2 of all queries → test
  2. 2.0.2 of the remaining queries → dev
  3. 3.the rest → train

The shared PubMed corpus is unchanged from the source dataset.

Structure

SubsetSplitsDescription
corpustrain (default)PubMed abstracts shared across all query splits
queriestrain, dev, testBiomedical questions
qrelstrain, dev, testRelevance judgments (query ↔ document)
answerstrain, dev, testReference answers

Dataset statistics

SplitQueriesCorpus
train366844183
dev91644183
test114544183
  • —Total queries merged: 5729
  • —Test ratio: 0.2
  • —Dev ratio (after test): 0.2
  • —Random seed: 42

Schema

corpus

json
{"id": "24323361", "title": "...", "text": "..."}

queries

json
{"id": "...", "text": "..."}

qrels

json
{"query_id": "...", "corpus_id": "24323361", "score": 1}

answers

json
{"query_id": "...", "answer": "..."}

Usage

python
from datasets import load_dataset

corpus = load_dataset("DinoStackAI/bioasq-rag-13b-resplit", "corpus")["train"]
queries = load_dataset("DinoStackAI/bioasq-rag-13b-resplit", "queries")
qrels = load_dataset("DinoStackAI/bioasq-rag-13b-resplit", "qrels")
answers = load_dataset("DinoStackAI/bioasq-rag-13b-resplit", "answers")

train_queries = queries["train"]
dev_qrels = qrels["dev"]
test_answers = answers["test"]

Citation

BioASQ data are distributed under CC BY 2.5. If you use this dataset, please cite the original BioASQ challenge papers:

Nentidis, A., G. Katsimpras, A. Krithara, and G. Paliouras, "Overview of BioASQ Tasks 13b and Synergy13 in CLEF2025", CLEF 2025 Working Notes, 2025.
George Tsatsaronis et al., "An overview of the BIOASQ large-scale biomedical semantic indexing and question answering competition", BMC bioinformatics, 2015.