---
title: UGMathBench
canonical_url: "https://www.modelscope.cn/datasets/xinxu02/UGMathBench"
md_url: "https://www.modelscope.cn/datasets/xinxu02/UGMathBench.md"
repository: xinxu02/UGMathBench
last_updated: 2025-03-25
license: GPL-3.0
storage_size: "12 MB"
downloads: 272
stars: 0
---

# UGMathBench

> UGMathBench - xinxu02 在 ModelScope 开源的数据集。UGMathBench is a diverse and dynamic benchmark specifically designed for evaluating undergraduate-level mathematical reasoning with LLMs. UGMathBench comprises 5,062 problems across 16 subjects and 111 topics,…

xinxu02/UGMathBench 是 ModelScope 魔搭社区上的数据集，存储大小 12 MB，采用 GPL-3.0 许可。

- **Repository**: xinxu02/UGMathBench
- **License**: GPL-3.0
- **Storage size**: 12 MB
- **Downloads**: 272
- **Stars**: 0
- **Last updated**: 2025-03-25

Source: https://www.modelscope.cn/datasets/xinxu02/UGMathBench

---

# UGMathBench: A Diverse and Dynamic Benchmark for Undergraduate-Level Mathematical Reasoning with Large Language Models

**UGMathBench** is a diverse and dynamic benchmark specifically designed for evaluating undergraduate-level mathematical reasoning with LLMs. 
UGMathBench comprises 5,062 problems across 16 subjects and 111 topics, featuring 10 distinct answer types.
Each problem includes three randomized versions.

Paper: https://huggingface.co/papers/2501.13766
GitHub page: https://github.com/YangLabHKUST/UGMathBench.git

# An Example to load the data

```python
from datasets import load_dataset
dataset=load_dataset("UGMathBench/ugmathbench", "Trigonometry", split="test")

print(dataset[0])
```

More details on loading and using the data are on our [GitHub page](https://github.com/YangLabHKUST/UGMathBench.git).


If you do find our code helpful or use our benchmark dataset, please cite our paper.

```
@article{xu2025ugmathbench,
  title={UGMathBench: A Diverse and Dynamic Benchmark for Undergraduate-Level Mathematical Reasoning with Large Language Models},
  author={Xu, Xin and Zhang, Jiaxin and Chen, Tianhao and Chao, Zitong and Hu, Jishan and Yang, Can},
  journal={arXiv preprint arXiv:2501.13766},
  year={2025}
}
```
