Dataset Viewer
Auto-converted to Parquet Duplicate
_id
stringlengths
1
4
title
stringclasses
1 value
text
stringlengths
41
201
1378
Women are more susceptible to death due to pneumonia when compared to men.
233
Cell autonomous sex determination in somatic cells does not occur in Galliformes.
134
Assessing treatment adherence is more beneficial to clinical practice than measuring routine outcomes.
927
Patients with common epithelial cancers are less likely to have an emergency event as their first hospital admission if they live in resource-deprived areas.
1146
Teaching hospitals do not provide better care than non-teaching hospitals.
845
Neutrophil extracellular traps (NETs) are released by ANCA-stimulated neutrophils.
113
Angiotensin converting enzyme inhibitors are associated with increased risk for functional renal insufficiency.
1070
Self-advocacy training is effective at decreasing homelessness.
781
Mice that lack Interferon-γ or its receptor exhibit high resistance to experimental autoimmune myocarditis.
1284
Therapeutics receiving accelerated approval encounter a lower frequency of post-marketing safety events
771
Metastatic colorectal cancer treated with a single agent fluoropyrimidines resulted in similar efficacy and better quality of life when compared with oxaliplatin-based chemotherapy in elderly patients.
1086
Sildenafil improves erectile function in men who experience sexual dysfunction as a result of the use of SSRI antidepressants.
486
H4 G94P proteins inhibit chromatin assembly, which decreases free histones.
1002
RA activation of DIF2 and NB4 cells induces hallmarks of transcriptionally active promoters.
487
H4 G94P proteins suppress degradation of free histones via Rad53-dependent mechanisms.
337
Destination container port throughput(CPT) is positively related to dengue virus (DENV-1) diffusion in air traffic shipments.
896
Overexpressing Cnp1 N-tail variants exacerbates the temperature-sensitive growth defect of scm3-139.
1319
Transplanted human glial cells can differentiate within the host animal.
509
Hematopoietic Stem Cell purification reaches purity rates above 90%.
1101
Stiff substrates encourage mesodermal differentiation by degrading beta-catenin in an integrin-dependent manner.
349
Diminished ovarian reserve is a reliable indicator of infertility in a non-infertile population.
258
Cholesterol loading induces KLF4 expression in VSMCs, resulting in the expression of pro-inflammatory cytokines.
1173
The PDPN gene deactivates the C-type lectin receptor (CLEC-2).
728
Ly6C hi monocytes have a lower inflammatory capacity than Ly6C lo monocytes.
356
Dscam1 acts as a hypervariable pattern-recognition receptor for the immune system.
1258
The recruitment of Wdr5 to its target loci depends on Kat8.
384
Epidemiological disease burden from noncommunicable diseases is more prevalent in low economic settings.
1120
Sympathetic nerve activity is reduced throughout normal pregnancy.
724
Ly49Q directs the organization of neutrophil polarization by regulating membrane raft functions.
478
Golli-deficient T-cells prefer to differentiate into an anergic phenotype in the adaptive immune response when there are increased levels of Ca2+ in the cytosol.
1225
The locus rs647161 is associated with colorectal carcinoma.
930
Patients with panic anxiety show decreased CSF levels of hypocretin.
220
Ca2+ cycling controls whole-body energy homeostasis in beige fat.
41
A high microerythrocyte count protects against severe anemia in homozygous alpha (+)- thalassemia trait subjects.
334
Depletion of nitric oxide is responsible for vasospasm.
49
ADAR1 binds to Dicer to cleave pre-miRNA.
4
1-1% of colorectal cancer patients are diagnosed with regional or distant metastases.
914
PPAR-RXRs can be activated by PPAR ligands.
1182
The Snf1 complex regulates carbon and energy metabolism in baker's yeast (Saccharomyces cerevisiae).
867
Oat tolerant coeliac patients may have oat specific inflammatory cells in their small bowel mucosa.
1159
The DESMOND program demonstrates no significant impact on weight loss.
221
Ca2+ cycling is a UCP1-dependent thermogenic mechanism.
670
Knockout proximal tubule-specific deletion of the BMP receptor Alk3 causes epithelial damage.
780
Mice that lack Interferon-γ or its receptor are highly susceptible to experimental autoimmune myocarditis.
848
Nigerian physicians constitue the largest component of sub-Saharan Africa-trained physicians in the United States.
493
HOXB4 is a highly expressed component of cellular secretome from fetal liver cell populations.
525
Histone demethylase recruitment and a transient decrease in histone methylation is necessary for ligand-dependent induction of transcription by nuclear receptors.
326
Deletion of ATM and Rad3 related protein leads to acute tissue loss.
283
Consumption of whole fruits increases the risk of type 2 diabetes.
1136
TNFAIP3 is a tumor enhancer in glioblastoma.

SciFact — 50 Queries Sample

A fixed random sample of 50 queries from the SciFact test set, used as the evaluation set for the Adaptive RAG for Token-Efficiency course project.

Dataset Details

Field Value
Source BeIR/scifact
Split used test
Sample size 50 queries
Random seed 0
Domain Biomedical / Scientific fact-checking

Why this sample?

Running a full RAG pipeline with a local LLM (Mistral 7B via Ollama) over all 300 test queries is time-consuming. This fixed sample of 50 allows reproducible experiments across team members without rerunning the full set.

The seed is fixed at 0 — every team member gets the same 50 queries.

How to load

from datasets import load_dataset

ds = load_dataset("andreiaalexa/adaptive-rag-scifact-50")
queries = ds["queries"]

print(queries[0])
# {'_id': '...', 'text': '...'}

How it was created

import random
from datasets import load_dataset, DatasetDict

queries_ds = load_dataset("BeIR/scifact", "queries", split="queries")

random.seed(0)
indices = random.sample(range(len(queries_ds)), 50)
sampled = queries_ds.select(indices)

DatasetDict({"queries": sampled}).push_to_hub("andreiaalexa/adaptive-rag-scifact-50")

Project context

This dataset is part of the Adaptive RAG for Token-Efficiency project, developed for the Language Technology / Information Retrieval course. The project investigates whether adaptively selecting the number of retrieved documents per query can reduce token usage without hurting answer quality.

Citation

If you use SciFact, please cite the original dataset:

@inproceedings{wadden-etal-2020-fact,
    title = "Fact or Fiction: Verifying Scientific Claims",
    author = "Wadden, David and Lin, Shanchuan and Lo, Kyle and Wang, Lucy Lu and van Zuylen, Madeleine and Cohan, Arman and Hajishirzi, Hannaneh",
    booktitle = "Proceedings of EMNLP 2020",
    year = "2020"
}
Downloads last month
35