Datasets:
File size: 1,970 Bytes
ff7ff8e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 | ---
license: mit
task_categories:
- question-answering
language:
- en
tags:
- math
- number-sense
- benchmark
- shortcuts
- numerical-reasoning
size_categories:
- 1K<n<10K
---
# SenseMath: Evaluating Number Sense in Large Language Models
**SenseMath** is a controlled benchmark for measuring whether LLMs can exploit number-sense shortcuts.
## Dataset Description
- **1,600 item families** across 8 categories and 4 digit scales
- **3 variants per family**: strong-shortcut, weak-shortcut, control
- **4,800 total items**
- **Categories**: Magnitude Estimation, Structural Shortcuts, Relative Distance, Cancellation, Compatible Numbers, Landmark Comparison, Equation Reasoning, Option Elimination
- **Digit scales**: d=2, 4, 8, 16
## Files
| File | Description |
|------|-------------|
| `data/sensemath_v2_d2.json` | 400 families, 2-digit operands |
| `data/sensemath_v2_d4.json` | 400 families, 4-digit operands |
| `data/sensemath_v2_d8.json` | 400 families, 8-digit operands |
| `data/sensemath_v2_d16.json` | 400 families, 16-digit operands |
| `data/judge_j1.json` | J1 task: shortcut recognition (251 items) |
| `data/judge_j2.json` | J2 task: strategy identification (80 items) |
| `data/judge_j3.json` | J3 task items |
## Usage
```python
from datasets import load_dataset
ds = load_dataset("DaydreamerMZM/SenseMath", split="train")
# Or load directly
import json
with open("data/sensemath_v2_d4.json") as f:
families = json.load(f)
```
## Citation
```bibtex
@article{zhuang2025sensemath,
title={SenseMath: Evaluating Number Sense in Large Language Models},
author={Zhuang, Haomin and Wang, Xiangqi and Shen, Yili and Cheng, Ying and Zhang, Xiangliang},
journal={arXiv preprint arXiv:XXXX.XXXXX},
year={2025}
}
```
## Links
- **Paper**: [arXiv](https://arxiv.org/abs/XXXX.XXXXX)
- **Code**: [GitHub](https://github.com/zhmzm/SenseMath)
- **Project Page**: [zhmzm.github.io/SenseMath](https://zhmzm.github.io/SenseMath/)
|