CoolFace
Datasetpublic

alexxxmf/firstaid_qa

First Aid Q&A First Aid Q&A is an English question-and-answer dataset for training and evaluating systems that respond to educational first-aid questions. It contains 10,136 synthetically generated Q&A examples based on common first-aid manuals, covering emergency assessment and first-aid topics. Dataset structure The repository provides one split: train: 10,136 records Each record contains two string fields: question: a user-style question answer: the… See the full description on the dataset page: https://huggingface.co/datasets/alexxxmf/firstaid_qa.

sourceHugging Faceupdated 1mo agoView on Hugging Face
0likes36downloads
Dataset Card

First Aid Q&A

First Aid Q&A is an English question-and-answer dataset for training and evaluating systems that respond to educational first-aid questions. It contains 10,136 synthetically generated Q&A examples based on common first-aid manuals, covering emergency assessment and first-aid topics.

Dataset structure

The repository provides one split:

  • train: 10,136 records

Each record contains two string fields:

  • question: a user-style question
  • answer: the corresponding answer
python
from datasets import load_dataset

dataset = load_dataset("alexxxmf/firstaid_qa", split="train")

Why some questions and answers are similar

This dataset deliberately includes related questions with small changes in wording, tone, and phrasing. A single underlying fact may therefore appear across several examples, sometimes with similar or repeated answers. This is intentional: people rarely ask the same question in exactly the same way. The variants are useful for training models to recognize equivalent intent and respond consistently when a question is phrased differently.

Consequently, this is not a benchmark designed around independently sampled examples. When creating evaluation splits, users should take care to group related variants together or otherwise prevent near-duplicate question families from crossing training and evaluation boundaries.

Intended uses

The dataset may be useful for question answering, instruction tuning, retrieval experiments, and research into robustness to wording variation in first-aid topics.

Limitations and safety

The material is educational and informational. It is not medical advice, emergency dispatch guidance, or a substitute for training, professional clinical judgment, or local emergency services. Models trained on this data should not be relied upon as the sole source of advice in an emergency.

Source and reuse

The Q&A examples and their wording variants were synthetically generated from common first-aid manuals. The dataset card does not grant rights to any underlying source material. Users are responsible for checking the provenance, terms, and licensing of the source material before redistribution or commercial use.