Add README.md with dataset documentation
Browse files
README.md
ADDED
@@ -0,0 +1,88 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Putnam AXIOM Dataset (ICML 2025 Version)
|
2 |
+
|
3 |
+
**Note: for questions, feedback, bugs, etc. please [open a Huggingface discussion here](https://huggingface.co/datasets/Putnam-AXIOM/putnam-axiom-dataset-ICML-2025-522/discussions).**
|
4 |
+
|
5 |
+
## Dataset Summary
|
6 |
+
|
7 |
+
The [**Putnam AXIOM**](https://openreview.net/pdf?id=YXnwlZe0yf) dataset is designed for evaluating large language models (LLMs) on advanced mathematical reasoning skills. It is based on challenging problems from the Putnam Mathematical Competition. This version contains 522 original problems prepared for the ICML 2025 submission.
|
8 |
+
|
9 |
+
This dataset includes:
|
10 |
+
- **Full Evaluation Set (522 problems)**: Complete set of problems
|
11 |
+
- **Test Set (372 problems)**: Set used for testing
|
12 |
+
- **Validation Set (150 problems)**: Set used for validation/development
|
13 |
+
|
14 |
+
Each problem includes:
|
15 |
+
- Problem statement
|
16 |
+
- Solution
|
17 |
+
- Original problem (where applicable)
|
18 |
+
- Answer type (e.g., numerical, proof)
|
19 |
+
- Source and type of problem (e.g., Algebra, Calculus, Geometry)
|
20 |
+
- Year (extracted from problem ID)
|
21 |
+
|
22 |
+
## Supported Tasks and Leaderboards
|
23 |
+
|
24 |
+
- **Mathematical Reasoning**: Evaluate mathematical reasoning and problem-solving skills.
|
25 |
+
- **Language Model Benchmarking**: Use this dataset to benchmark performance of language models on advanced mathematical questions.
|
26 |
+
|
27 |
+
## Languages
|
28 |
+
|
29 |
+
The dataset is presented in **English**.
|
30 |
+
|
31 |
+
## Dataset Structure
|
32 |
+
|
33 |
+
### Data Fields
|
34 |
+
|
35 |
+
- **year**: The year of the competition (extracted from the problem ID).
|
36 |
+
- **id**: Unique identifier for each problem.
|
37 |
+
- **problem**: The problem statement.
|
38 |
+
- **solution**: The solution or explanation for the problem.
|
39 |
+
- **answer_type**: The expected type of answer (e.g., numerical, proof).
|
40 |
+
- **source**: The origin of the problem (Putnam).
|
41 |
+
- **type**: A description of the problem's mathematical topic (e.g., "Algebra Geometry").
|
42 |
+
- **original_problem**: Original form of the problem, where applicable.
|
43 |
+
- **original_solution**: Original solution to the problem, where applicable.
|
44 |
+
- **variation**: Flag for variations (0 for all problems in this dataset as these are not variations).
|
45 |
+
|
46 |
+
### Splits
|
47 |
+
|
48 |
+
| Split | Description | Number of Problems |
|
49 |
+
|-------------|----------------------------------------|--------------------|
|
50 |
+
| `full_eval` | Complete set of 522 problems | 522 |
|
51 |
+
| `test` | Test split | 372 |
|
52 |
+
| `val` | Validation/development split | 150 |
|
53 |
+
|
54 |
+
## Dataset Usage
|
55 |
+
|
56 |
+
```python
|
57 |
+
from datasets import load_dataset
|
58 |
+
|
59 |
+
# Load the dataset
|
60 |
+
dataset = load_dataset("Putnam-AXIOM/putnam-axiom-dataset-ICML-2025-522")
|
61 |
+
|
62 |
+
# Access each split
|
63 |
+
full_eval = dataset["full_eval"]
|
64 |
+
test = dataset["test"]
|
65 |
+
val = dataset["val"]
|
66 |
+
|
67 |
+
# Example usage: print the first problem from the full evaluation set
|
68 |
+
print(full_eval[0])
|
69 |
+
```
|
70 |
+
|
71 |
+
## Citation
|
72 |
+
If you use this dataset, please cite it as follows:
|
73 |
+
|
74 |
+
```bibtex
|
75 |
+
@article{putnam_axiom2025,
|
76 |
+
title={Putnam-AXIOM: A Functional and Static Benchmark for Measuring Higher Level Mathematical Reasoning},
|
77 |
+
author={Aryan Gulati and Brando Miranda and Eric Chen and Emily Xia and Kai Fronsdal and Bruno de Moraes Dumont and Sanmi Koyejo},
|
78 |
+
journal={39th International Conference on Machine Learning (ICML 2025)},
|
79 |
+
year={2025},
|
80 |
+
note={Preprint available at: https://openreview.net/pdf?id=YXnwlZe0yf}
|
81 |
+
}
|
82 |
+
```
|
83 |
+
|
84 |
+
## License
|
85 |
+
|
86 |
+
This dataset is licensed under the Apache 2.0.
|
87 |
+
|
88 |
+
Last updated: May 22, 2024
|