songdj commited on
Commit
3503af9
·
verified ·
1 Parent(s): 7e91f38

Redesign dataset card with badges, structured layout, and cross-links

Browse files
Files changed (1) hide show
  1. README.md +56 -37
README.md CHANGED
@@ -84,56 +84,71 @@ dataset_info:
84
  num_examples: 241
85
  ---
86
 
 
 
87
  # ScratchMath
88
 
89
- **AIED 2026** | [Project Page](https://bbsngg.github.io/ScratchMath/) | [Paper (PDF)](https://bbsngg.github.io/ScratchMath/paper/ScratchMath_AIED2026.pdf) | [Code (GitHub)](https://github.com/ai-for-edu/ScratchMath)
 
 
 
 
 
 
 
 
 
90
 
91
- **ScratchMath** is a multimodal benchmark dataset for evaluating the ability of Multimodal Large Language Models (MLLMs) to analyze handwritten mathematical scratchwork produced by real students. Unlike existing math benchmarks that focus on problem-solving accuracy, ScratchMath targets **error diagnosis** — identifying what type of mistake a student made and explaining why.
 
 
92
 
93
- ## Dataset Description
94
 
95
- The dataset contains 1,720 samples of authentic student scratchwork collected from an online education platform. Each sample includes:
 
 
 
 
 
96
 
97
- - A math problem with its correct answer and solution
98
- - The student's incorrect answer
99
- - A photograph of the student's handwritten scratchwork
100
- - A human-annotated error category and detailed error explanation
101
 
102
  ### Subsets
103
 
104
- | Subset | Description | Samples |
105
- |--------|-------------|---------|
106
- | `primary` | Primary school (Grades 16) math problems | 1,479 |
107
- | `middle` | Middle school (Grades 79) math problems | 241 |
108
 
109
  ### Error Categories
110
 
111
- Each sample is labeled with one of seven error categories:
112
-
113
- | Category | English | Primary | Middle |
114
- |----------|---------|---------|--------|
115
  | 计算错误 | Calculation Error | 453 | 113 |
116
- | 题目理解错误 | Question Comprehension Error | 499 | 20 |
117
- | 知识点错误 | Knowledge Gap Error | 174 | 45 |
118
- | 答题技巧错误 | Problem-Solving Strategy Error | 118 | 17 |
119
- | 手写誊抄错误 | Handwriting Transcription Error | 95 | 29 |
120
  | 逻辑推理错误 | Logical Reasoning Error | 73 | 2 |
121
  | 注意力与细节错误 | Attention & Detail Error | 67 | 15 |
122
 
123
- ## Fields
124
 
125
  | Field | Type | Description |
126
- |-------|------|-------------|
127
- | `question_id` | string | Unique identifier for the math problem |
128
- | `question` | string | The math problem text (may contain LaTeX in `$...$` delimiters) |
129
- | `answer` | string | The correct answer(s) |
130
- | `solution` | string | Step-by-step solution with explanation |
131
- | `student_answer` | string | The student's incorrect answer |
132
- | `student_scratchwork` | image | Photograph of the student's handwritten work |
133
- | `error_category` | ClassLabel | One of 7 error types (see above) |
134
- | `error_explanation` | string | Detailed explanation of what error the student made and why |
135
-
136
- ## Usage
 
 
137
 
138
  ```python
139
  from datasets import load_dataset
@@ -148,22 +163,26 @@ ds_middle = load_dataset("songdj/ScratchMath", "middle")
148
  sample = ds_primary["train"][0]
149
  print(sample["question"])
150
  print(sample["error_category"])
151
- sample["student_scratchwork"].show() # Display the scratchwork image
152
  ```
153
 
 
 
154
  ## Citation
155
 
156
  If you use this dataset, please cite:
157
 
158
  ```bibtex
159
  @inproceedings{song2026scratchmath,
160
- title={Can MLLMs Read Students' Minds? Unpacking Multimodal Error Analysis in Handwritten Math},
161
- author={Song, Dingjie and Xu, Tianlong and Zhang, Yi-Fan and Li, Hang and Yan, Zhiling and Fan, Xing and Li, Haoyang and Sun, Lichao and Wen, Qingsong},
162
- booktitle={Proceedings of the 27th International Conference on Artificial Intelligence in Education (AIED)},
163
- year={2026}
164
  }
165
  ```
166
 
 
 
167
  ## License
168
 
169
  This dataset is released under the [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/) license.
 
84
  num_examples: 241
85
  ---
86
 
87
+ <div align="center">
88
+
89
  # ScratchMath
90
 
91
+ ### *Can MLLMs Read Students' Minds?* Unpacking Multimodal Error Analysis in Handwritten Math
92
+
93
+ **AIED 2026** &mdash; 27th International Conference on Artificial Intelligence in Education
94
+
95
+ [![Project Page](https://img.shields.io/badge/Project-Page-blue?style=for-the-badge&logo=googlechrome&logoColor=white)](https://bbsngg.github.io/ScratchMath/)
96
+ [![Paper](https://img.shields.io/badge/Paper-PDF-red?style=for-the-badge&logo=adobeacrobatreader&logoColor=white)](https://bbsngg.github.io/ScratchMath/paper/ScratchMath_AIED2026.pdf)
97
+ [![Code](https://img.shields.io/badge/Code-GitHub-black?style=for-the-badge&logo=github&logoColor=white)](https://github.com/ai-for-edu/ScratchMath)
98
+ [![License](https://img.shields.io/badge/License-CC_BY_4.0-green?style=for-the-badge)](https://creativecommons.org/licenses/by/4.0/)
99
+
100
+ </div>
101
 
102
+ ---
103
+
104
+ ## Overview
105
 
106
+ **ScratchMath** is a multimodal benchmark for evaluating whether MLLMs can analyze handwritten mathematical scratchwork produced by real students. Unlike existing math benchmarks that focus on problem-solving accuracy, ScratchMath targets **error diagnosis** &mdash; identifying what type of mistake a student made and explaining why.
107
 
108
+ - **1,720** authentic student scratchwork samples from Chinese primary & middle schools
109
+ - **7** expert-defined error categories with detailed explanations
110
+ - **2** complementary tasks: Error Cause Explanation (ECE) & Error Cause Classification (ECC)
111
+ - **16** leading MLLMs benchmarked; best model reaches **57.2%** vs. human experts at **83.9%**
112
+
113
+ ---
114
 
115
+ ## Dataset Structure
 
 
 
116
 
117
  ### Subsets
118
 
119
+ | Subset | Grade Level | Samples |
120
+ |:------:|:-----------:|:-------:|
121
+ | `primary` | Grades 1&ndash;6 | 1,479 |
122
+ | `middle` | Grades 7&ndash;9 | 241 |
123
 
124
  ### Error Categories
125
 
126
+ | Category (zh) | Category (en) | Primary | Middle |
127
+ |:-:|:-:|:-:|:-:|
 
 
128
  | 计算错误 | Calculation Error | 453 | 113 |
129
+ | 题目理解错误 | Problem Comprehension Error | 499 | 20 |
130
+ | 知识点错误 | Conceptual Knowledge Error | 174 | 45 |
131
+ | 答题技巧错误 | Procedural Error | 118 | 17 |
132
+ | 手写誊抄错误 | Transcription Error | 95 | 29 |
133
  | 逻辑推理错误 | Logical Reasoning Error | 73 | 2 |
134
  | 注意力与细节错误 | Attention & Detail Error | 67 | 15 |
135
 
136
+ ### Fields
137
 
138
  | Field | Type | Description |
139
+ |:------|:----:|:------------|
140
+ | `question_id` | string | Unique identifier |
141
+ | `question` | string | Math problem text (may contain LaTeX) |
142
+ | `answer` | string | Correct answer |
143
+ | `solution` | string | Step-by-step reference solution |
144
+ | `student_answer` | string | Student's incorrect answer |
145
+ | `student_scratchwork` | image | Photo of handwritten work |
146
+ | `error_category` | ClassLabel | One of 7 error types |
147
+ | `error_explanation` | string | Expert explanation of the error |
148
+
149
+ ---
150
+
151
+ ## Quick Start
152
 
153
  ```python
154
  from datasets import load_dataset
 
163
  sample = ds_primary["train"][0]
164
  print(sample["question"])
165
  print(sample["error_category"])
166
+ sample["student_scratchwork"].show()
167
  ```
168
 
169
+ ---
170
+
171
  ## Citation
172
 
173
  If you use this dataset, please cite:
174
 
175
  ```bibtex
176
  @inproceedings{song2026scratchmath,
177
+ title = {Can MLLMs Read Students' Minds? Unpacking Multimodal Error Analysis in Handwritten Math},
178
+ author = {Song, Dingjie and Xu, Tianlong and Zhang, Yi-Fan and Li, Hang and Yan, Zhiling and Fan, Xing and Li, Haoyang and Sun, Lichao and Wen, Qingsong},
179
+ booktitle = {Proceedings of the 27th International Conference on Artificial Intelligence in Education (AIED)},
180
+ year = {2026}
181
  }
182
  ```
183
 
184
+ ---
185
+
186
  ## License
187
 
188
  This dataset is released under the [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/) license.