112 lines
3.0 KiB
Markdown
112 lines
3.0 KiB
Markdown
# AIME-2026
|
|
|
|
|
|
## Overview
|
|
|
|
AIME 2026 (American Invitational Mathematics Examination 2026) is a benchmark based on problems from the prestigious AIME competition, one of the most challenging high school mathematics contests in the United States. It tests advanced mathematical reasoning and problem-solving skills.
|
|
|
|
## Task Description
|
|
|
|
- **Task Type**: Competition Mathematics Problem Solving
|
|
- **Input**: AIME-level mathematical problem
|
|
- **Output**: Integer answer (0-999) with step-by-step reasoning
|
|
- **Difficulty**: Advanced high school / early undergraduate level
|
|
|
|
## Key Features
|
|
|
|
- Problems from AIME I and AIME II 2026 competitions
|
|
- Answers are always integers between 0 and 999
|
|
- Requires creative mathematical reasoning and problem-solving
|
|
- Topics: algebra, geometry, number theory, combinatorics, probability
|
|
- Represents top-tier high school mathematics competition difficulty
|
|
|
|
## Evaluation Notes
|
|
|
|
- Default configuration uses **0-shot** evaluation
|
|
- Answers should be formatted within `\boxed{}` for proper extraction
|
|
- Uses LLM-as-judge for mathematical equivalence checking
|
|
|
|
|
|
## Properties
|
|
|
|
| Property | Value |
|
|
|----------|-------|
|
|
| **Benchmark Name** | `aime26` |
|
|
| **Dataset ID** | [evalscope/aime26](https://modelscope.cn/datasets/evalscope/aime26/summary) |
|
|
| **Paper** | N/A |
|
|
| **Tags** | `Math`, `Reasoning` |
|
|
| **Metrics** | `acc` |
|
|
| **Default Shots** | 0-shot |
|
|
| **Evaluation Split** | `test` |
|
|
|
|
|
|
## Data Statistics
|
|
|
|
| Metric | Value |
|
|
|--------|-------|
|
|
| Total Samples | 30 |
|
|
| Prompt Length (Mean) | 517.7 chars |
|
|
| Prompt Length (Min/Max) | 263 / 1026 chars |
|
|
|
|
## Sample Example
|
|
|
|
**Subset**: `default`
|
|
|
|
```json
|
|
{
|
|
"input": [
|
|
{
|
|
"id": "a6d469bc",
|
|
"content": "\nSolve the following math problem step by step. Put your answer inside \\boxed{}.\n\nPatrick started walking at a constant rate along a straight road from school to the park. One hour after Patrick left, Tanya started running along the same road ... [TRUNCATED 270 chars] ... ya ran, and all three arrived at the park at the same time. The distance from the school to the park is $\\frac{m}{n}$ miles, where $m$ and $n$ are relatively prime positive integers. Find $m + n$.\n\nRemember to put your answer inside \\boxed{}."
|
|
}
|
|
],
|
|
"target": "277",
|
|
"id": 0,
|
|
"group_id": 0
|
|
}
|
|
```
|
|
|
|
## Prompt Template
|
|
|
|
**Prompt Template:**
|
|
```text
|
|
|
|
Solve the following math problem step by step. Put your answer inside \boxed{{}}.
|
|
|
|
{question}
|
|
|
|
Remember to put your answer inside \boxed{{}}.
|
|
```
|
|
|
|
## Usage
|
|
|
|
### Using CLI
|
|
|
|
```bash
|
|
evalscope eval \
|
|
--model YOUR_MODEL \
|
|
--api-url OPENAI_API_COMPAT_URL \
|
|
--api-key EMPTY_TOKEN \
|
|
--datasets aime26 \
|
|
--limit 10 # Remove this line for formal evaluation
|
|
```
|
|
|
|
### Using Python
|
|
|
|
```python
|
|
from evalscope import run_task
|
|
from evalscope.config import TaskConfig
|
|
|
|
task_cfg = TaskConfig(
|
|
model='YOUR_MODEL',
|
|
api_url='OPENAI_API_COMPAT_URL',
|
|
api_key='EMPTY_TOKEN',
|
|
datasets=['aime26'],
|
|
limit=10, # Remove this line for formal evaluation
|
|
)
|
|
|
|
run_task(task_cfg=task_cfg)
|
|
```
|
|
|
|
|