CoolFace
Datasetpublic

Layered-Labs/benchbase-triage

BenchBase TRIAGE TRIAGE normalized into the BenchBase unified schema. Every BenchBase dataset shares the same columns, so one loader and one evaluation loop cover all of them. Source: NLie2/TRIAGE Code and converter: Layered-Labs/benchbase-med Items: 86 (train: 86) Rejected source rows: 1 (see rejected.json) Schema Field Type Description dataset_key str Benchmark identifier (triage) hash str SHA256(question + answer text), stable across option order… See the full description on the dataset page: https://huggingface.co/datasets/Layered-Labs/benchbase-triage.

sourceHugging Faceotherupdated 1d agoView on Hugging Face
0likes17downloads
Dataset Card

BenchBase TRIAGE

TRIAGE normalized into the BenchBase unified schema. Every BenchBase dataset shares the same columns, so one loader and one evaluation loop cover all of them.

Schema

FieldTypeDescription
dataset_keystrBenchmark identifier (triage)
hashstrSHA256(question + answer text), stable across option order
splitstrSource split
question_typestrmcq
questionstrQuestion stem
contextstr or nullPassage the question refers to, if any
optionslist[dict][{"original_key": "A", "text": "..."}]
answerdictThe matching option: {"original_key": "D", "text": "..."}
metadatadictSource fields that do not fit the schema

Usage

python
from datasets import load_dataset

ds = load_dataset("Layered-Labs/benchbase-triage")
print(ds["train"][0])