Datasets:
Tasks:
Text-to-Image
Modalities:
Image
Formats:
imagefolder
Languages:
English
Size:
1K - 10K
Tags:
math
License:
Update README.md
Browse files
README.md
CHANGED
@@ -7,8 +7,33 @@ language:
|
|
7 |
size_categories:
|
8 |
- 1K<n<10K
|
9 |
---
|
|
|
|
|
10 |
We introduce our multimodal mathematics dataset, MM-MATH, which comprises a total of 5,929 problems.
|
11 |
This dataset is collected from real middle school exams in China, and all the math problems are open-ended to evaluate the mathematical problem-solving abilities of current multimodal models. MM-MATH is annotated with fine-grained three-dimensional labels: difficulty, grade, and knowledge points. The difficulty level is determined based on the average scores of student exams, the grade labels are derived from the educational content of different grades from which the problems were collected, and the knowledge points are categorized by teachers according to the problems' content.
|
12 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
|
14 |
|
|
|
7 |
size_categories:
|
8 |
- 1K<n<10K
|
9 |
---
|
10 |
+
# MM_Math Datasets
|
11 |
+
|
12 |
We introduce our multimodal mathematics dataset, MM-MATH, which comprises a total of 5,929 problems.
|
13 |
This dataset is collected from real middle school exams in China, and all the math problems are open-ended to evaluate the mathematical problem-solving abilities of current multimodal models. MM-MATH is annotated with fine-grained three-dimensional labels: difficulty, grade, and knowledge points. The difficulty level is determined based on the average scores of student exams, the grade labels are derived from the educational content of different grades from which the problems were collected, and the knowledge points are categorized by teachers according to the problems' content.
|
14 |
|
15 |
+
## MM_Math Package
|
16 |
+
|
17 |
+
The MM_math package contains two documents:
|
18 |
+
|
19 |
+
1. **image.tar**: This archive includes images used in the problems.
|
20 |
+
2. **questions.json**: This file contains collected middle school exam questions, including the problem statement, solution process, and 3D annotations.
|
21 |
+
|
22 |
+
|
23 |
+
## Data Format
|
24 |
+
All data in **MM-Math** are standardized to the following format:
|
25 |
+
|
26 |
+
```json
|
27 |
+
{
|
28 |
+
"question": "The text of each question statement conforms to LaTeX code.",
|
29 |
+
"image_file_name": "The folder where the question image is located.",
|
30 |
+
"image": "The names of the question images in the image folder.",
|
31 |
+
"solution": "The text of each question' soluation conforms to LaTeX code.",
|
32 |
+
"solution_image": "The image names of solution used in the image folder.",
|
33 |
+
"year": "The grade level annotated from each year examination.",
|
34 |
+
"difficult": "The difficult level annotated by examination scores.",
|
35 |
+
"knowledge": "Each knowledge points contained in the question, which is annotated by middle school teacher."
|
36 |
+
}
|
37 |
+
```
|
38 |
|
39 |
|