luodian commited on
Commit
81666ac
·
verified ·
1 Parent(s): ec679ff

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +110 -0
README.md ADDED
@@ -0,0 +1,110 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ dataset_info:
3
+ features:
4
+ - name: url
5
+ dtype: string
6
+ - name: problem
7
+ dtype: string
8
+ - name: answer
9
+ dtype: string
10
+ splits:
11
+ - name: train
12
+ num_examples: 6
13
+ license: mit
14
+ language:
15
+ - en
16
+ tags:
17
+ - mathematics
18
+ - olympiad
19
+ - problem-solving
20
+ - competition-math
21
+ ---
22
+
23
+ # IMO 2025 Problems Dataset
24
+
25
+ This dataset contains the 6 problems from the 2025 International Mathematical Olympiad (IMO). The problems are formatted with proper LaTeX notation for mathematical expressions.
26
+
27
+ ## Dataset Structure
28
+
29
+ Each example contains:
30
+ - `url`: Problem identifier (e.g., "2025-imo-p1")
31
+ - `problem`: The problem statement with LaTeX mathematical notation
32
+ - `answer`: The solution (currently set to "N/A")
33
+
34
+ ## Problem Types
35
+
36
+ The dataset includes problems covering various mathematical areas:
37
+
38
+ 1. **Problem 1**: Combinatorial geometry (sunny lines)
39
+ 2. **Problem 2**: Functional equations
40
+ 3. **Problem 3**: Number theory (perfect squares)
41
+ 4. **Problem 4**: Combinatorial game theory
42
+ 5. **Problem 5**: Number theory (primitive sets)
43
+ 6. **Problem 6**: Euclidean geometry
44
+
45
+ ## Mathematical Notation
46
+
47
+ Mathematical expressions are formatted using LaTeX:
48
+ - Variables and expressions: `$x$`, `$n \geq 3$`
49
+ - Display equations: `$$f(x^3 + y^3) = f(x + y)(x^2 - xy + y^2)$$`
50
+ - Sets: `$\mathbb{R}$`, `$S$`
51
+ - Special formatting: *sunny*, *primitive*
52
+
53
+ ## Files
54
+
55
+ - `imo_2025.json`: Full dataset in JSON format
56
+ - `imo_2025.jsonl`: Dataset in JSONL format (one problem per line)
57
+ - `README.md`: This file
58
+
59
+ ## Usage
60
+
61
+ ```python
62
+ from datasets import load_dataset
63
+
64
+ # Load the dataset
65
+ dataset = load_dataset("lmms-lab/imo-2025")
66
+
67
+ # Access individual problems
68
+ for problem in dataset['train']:
69
+ print(f"Problem: {problem['url']}")
70
+ print(f"Statement: {problem['problem']}")
71
+ print()
72
+ ```
73
+
74
+ Or load directly from JSON/JSONL:
75
+
76
+ ```python
77
+ import json
78
+
79
+ # Load from JSON
80
+ with open("imo_2025.json", "r") as f:
81
+ problems = json.load(f)
82
+
83
+ # Or load from JSONL
84
+ problems = []
85
+ with open("imo_2025.jsonl", "r") as f:
86
+ for line in f:
87
+ problems.append(json.loads(line))
88
+ ```
89
+
90
+ ## Citation
91
+
92
+ If you use this dataset in your research, please cite:
93
+
94
+ ```bibtex
95
+ @dataset{imo2025,
96
+ title={IMO 2025 Problems Dataset},
97
+ author={LMMS Lab},
98
+ year={2025},
99
+ url={https://huggingface.co/datasets/lmms-lab/imo-2025}
100
+ }
101
+ ```
102
+
103
+ ## Source
104
+
105
+ Problems are from the 2025 International Mathematical Olympiad.
106
+ Original source: https://artofproblemsolving.com/wiki/index.php/2025_IMO_Problems
107
+
108
+ ## License
109
+
110
+ This dataset is released under the MIT License.