Muse-Ltd/UncertaintyGym
UncertaintyGym A Standardized Benchmark for LLM Epistemic Calibration & Uncertainty Expression Abstract UncertaintyGym evaluates whether language models recognize the boundaries of their knowledge. Rather than assessing purely factual recall, UncertaintyGym measures how reliably an LLM explicitly declares uncertainty ("I don't know"), requests necessary disambiguating context, and rejects false premises without hallucinating. Benchmark Taxonomy… See the full description on the dataset page: https://huggingface.co/datasets/Muse-Ltd/UncertaintyGym.
UncertaintyGym
A Standardized Benchmark for LLM Epistemic Calibration & Uncertainty Expression
  
Abstract
UncertaintyGym evaluates whether language models recognize the boundaries of their knowledge. Rather than assessing purely factual recall, UncertaintyGym measures how reliably an LLM explicitly declares uncertainty ("I don't know"), requests necessary disambiguating context, and rejects false premises without hallucinating.
Benchmark Taxonomy
The dataset comprises 4 balanced evaluation categories:
Metric: Meta-Cognitive Calibration Score ($\text{MCS}$)
$$\text{MCS} = \frac{\text{Acc}{\text{Cat A}} + \text{Cal}{\text{Cat B}} + \text{Cal}{\text{Cat C}} + \text{Cal}{\text{Cat D}}}{4}$$
- $\text{Acc}_{\text{Cat A}}$: Factual accuracy on solvable queries.
- $\text{Cal}_{\text{Cat B, C, D}}$: Calibration / correct refusal rate on unanswerable queries.
- Hallucination Rate: $1.0 - \text{mean}(\text{Cal}{\text{Cat B}}, \text{Cal}{\text{Cat C}}, \text{Cal}_{\text{Cat D}})$.
Baseline Results
Empirical baseline:
Usage
from datasets import load_dataset
# Load full benchmark
dataset = load_dataset("uncertainty-gym", split="test")
# Load individual category
cat_c = load_dataset("uncertainty-gym", "category_c", split="test")Citation
@misc{uncertaintygym2026,
title={UncertaintyGym: A Benchmark for LLM Meta-Cognitive Calibration and Explicit Uncertainty Expression},
author={Muse Ltd},
year={2026},
howpublished={\url{https://huggingface.co/datasets/Muse-Ltd/UncertaintyGym}}
}