Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
@@ -1,11 +1,9 @@
|
|
1 |
---
|
2 |
dataset_info:
|
3 |
features:
|
4 |
-
- name:
|
5 |
-
dtype: string
|
6 |
-
- name: original_problem
|
7 |
dtype: string
|
8 |
-
- name:
|
9 |
dtype: string
|
10 |
- name: problem
|
11 |
dtype: string
|
@@ -17,39 +15,31 @@ dataset_info:
|
|
17 |
dtype: string
|
18 |
- name: type
|
19 |
dtype: string
|
20 |
-
- name:
|
|
|
|
|
21 |
dtype: string
|
22 |
- name: variation
|
23 |
dtype: int64
|
24 |
splits:
|
25 |
- name: full_eval
|
26 |
-
num_bytes: 1515506
|
27 |
num_examples: 522
|
28 |
- name: test
|
29 |
-
num_bytes: 1084327
|
30 |
num_examples: 372
|
31 |
- name: validation
|
32 |
-
num_bytes: 431179
|
33 |
num_examples: 150
|
34 |
-
download_size:
|
35 |
-
dataset_size:
|
36 |
configs:
|
37 |
- config_name: default
|
38 |
-
data_files:
|
39 |
-
- split: full_eval
|
40 |
-
path: data/full_eval-*
|
41 |
-
- split: test
|
42 |
-
path: data/test-*
|
43 |
-
- split: validation
|
44 |
-
path: data/validation-*
|
45 |
extra_gated_prompt: 'By requesting access to this dataset, you agree to cite the following
|
46 |
works in any publications or projects that utilize this data:
|
47 |
|
48 |
- Putnam-AXIOM dataset: @article{putnam_axiom2025, title={Putnam-AXIOM: A Functional
|
49 |
and Static Benchmark for Measuring Higher Level Mathematical Reasoning}, author={Aryan
|
50 |
Gulati and Brando Miranda and Eric Chen and Emily Xia and Kai Fronsdal and Bruno
|
51 |
-
de Moraes Dumont and Sanmi Koyejo}, journal={39th International Conference on Machine
|
52 |
-
|
53 |
---
|
54 |
|
55 |
# Putnam AXIOM Dataset (ICML 2025 Version)
|
@@ -99,11 +89,11 @@ The dataset is presented in **English**.
|
|
99 |
|
100 |
### Splits
|
101 |
|
102 |
-
| Split
|
103 |
-
|
104 |
-
| `full_eval`
|
105 |
-
| `test`
|
106 |
-
| `
|
107 |
|
108 |
## Dataset Usage
|
109 |
|
@@ -116,7 +106,7 @@ dataset = load_dataset("Putnam-AXIOM/putnam-axiom-dataset-ICML-2025-522")
|
|
116 |
# Access each split
|
117 |
full_eval = dataset["full_eval"]
|
118 |
test = dataset["test"]
|
119 |
-
|
120 |
|
121 |
# Example usage: print the first problem from the full evaluation set
|
122 |
print(full_eval[0])
|
|
|
1 |
---
|
2 |
dataset_info:
|
3 |
features:
|
4 |
+
- name: year
|
|
|
|
|
5 |
dtype: string
|
6 |
+
- name: id
|
7 |
dtype: string
|
8 |
- name: problem
|
9 |
dtype: string
|
|
|
15 |
dtype: string
|
16 |
- name: type
|
17 |
dtype: string
|
18 |
+
- name: original_problem
|
19 |
+
dtype: string
|
20 |
+
- name: original_solution
|
21 |
dtype: string
|
22 |
- name: variation
|
23 |
dtype: int64
|
24 |
splits:
|
25 |
- name: full_eval
|
|
|
26 |
num_examples: 522
|
27 |
- name: test
|
|
|
28 |
num_examples: 372
|
29 |
- name: validation
|
|
|
30 |
num_examples: 150
|
31 |
+
download_size: 560892
|
32 |
+
dataset_size: 1184885
|
33 |
configs:
|
34 |
- config_name: default
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
35 |
extra_gated_prompt: 'By requesting access to this dataset, you agree to cite the following
|
36 |
works in any publications or projects that utilize this data:
|
37 |
|
38 |
- Putnam-AXIOM dataset: @article{putnam_axiom2025, title={Putnam-AXIOM: A Functional
|
39 |
and Static Benchmark for Measuring Higher Level Mathematical Reasoning}, author={Aryan
|
40 |
Gulati and Brando Miranda and Eric Chen and Emily Xia and Kai Fronsdal and Bruno
|
41 |
+
de Moraes Dumont and Sanmi Koyejo}, journal={39th International Conference on Machine Learning (ICML 2025)}, year={2025},
|
42 |
+
note={Preprint available at: https://openreview.net/pdf?id=YXnwlZe0yf}} '
|
43 |
---
|
44 |
|
45 |
# Putnam AXIOM Dataset (ICML 2025 Version)
|
|
|
89 |
|
90 |
### Splits
|
91 |
|
92 |
+
| Split | Description | Number of Problems |
|
93 |
+
|---------------|----------------------------------------|--------------------|
|
94 |
+
| `full_eval` | Complete set of 522 problems | 522 |
|
95 |
+
| `test` | Test split | 372 |
|
96 |
+
| `validation` | Validation/development split | 150 |
|
97 |
|
98 |
## Dataset Usage
|
99 |
|
|
|
106 |
# Access each split
|
107 |
full_eval = dataset["full_eval"]
|
108 |
test = dataset["test"]
|
109 |
+
validation = dataset["validation"]
|
110 |
|
111 |
# Example usage: print the first problem from the full evaluation set
|
112 |
print(full_eval[0])
|