Datasets:
Add files using upload-large-folder tool
Browse files- README.md +54 -0
- data.jsonl +0 -0
- images/10230_q0.png +3 -0
- images/10457_q0.png +3 -0
- images/10510_q0.png +3 -0
- images/10526_q0.png +3 -0
- images/11127_q0.png +3 -0
- images/11156_q0.png +3 -0
- images/129_q0.png +3 -0
- images/2284_q0.png +3 -0
- images/2770_q0.png +3 -0
- images/2806_q0.png +3 -0
- images/2814_q0.png +3 -0
- images/31_q0.png +3 -0
- images/3224_q0.png +3 -0
- images/3259_q0.png +3 -0
- images/3347_q0.png +3 -0
- images/3408_q0.png +3 -0
- images/3567_q0.png +3 -0
- images/3685_q0.png +3 -0
- images/392_q0.png +3 -0
- images/4320_q0.png +3 -0
- images/4512_q0.png +3 -0
- images/5650_q0.png +3 -0
- images/5733_q0.png +3 -0
- images/5755_q0.png +3 -0
- images/584_q0.png +3 -0
- images/596_q0.png +3 -0
- images/609_q0.png +3 -0
- images/633_q0.png +3 -0
- images/650_q0.png +3 -0
- images/6749_q0.png +3 -0
- images/674_q0.png +3 -0
- images/6917_q0.png +3 -0
- images/7248_q0.png +3 -0
- images/7348_q0.png +3 -0
- images/766_q0.png +3 -0
- images/7686_q0.png +3 -0
- images/778_q0.png +3 -0
- images/8083_q0.png +3 -0
- images/810_q0.png +3 -0
- images/8302_q0.png +3 -0
- images/8357_q0.png +3 -0
- images/845_q0.png +3 -0
- images/8506_q0.png +3 -0
- images/9052_q0.png +3 -0
- images/9386_q0.png +3 -0
- images/9590_q0.png +3 -0
- images/9760_q0.png +3 -0
- images/9808_q0.png +3 -0
README.md
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
pretty_name: ExamGeo
|
| 3 |
+
language:
|
| 4 |
+
- en
|
| 5 |
+
task_categories:
|
| 6 |
+
- visual-question-answering
|
| 7 |
+
tags:
|
| 8 |
+
- geometry
|
| 9 |
+
- mathematics
|
| 10 |
+
- multimodal
|
| 11 |
+
size_categories:
|
| 12 |
+
- 1K<n<10K
|
| 13 |
+
configs:
|
| 14 |
+
- config_name: default
|
| 15 |
+
data_files:
|
| 16 |
+
- split: test
|
| 17 |
+
path: data.jsonl
|
| 18 |
+
---
|
| 19 |
+
|
| 20 |
+
# ExamGeo
|
| 21 |
+
|
| 22 |
+
ExamGeo contains 1,000 English plane-geometry problems for multimodal evaluation. Each record includes a problem statement, one diagram, a reference answer, and a difficulty value.
|
| 23 |
+
|
| 24 |
+
## Contents
|
| 25 |
+
|
| 26 |
+
```text
|
| 27 |
+
data.jsonl 1,000 problems
|
| 28 |
+
images/ 1,000 diagrams
|
| 29 |
+
```
|
| 30 |
+
|
| 31 |
+
Each line in `data.jsonl` has this format:
|
| 32 |
+
|
| 33 |
+
```json
|
| 34 |
+
{
|
| 35 |
+
"id": "3",
|
| 36 |
+
"difficulty": "0.2",
|
| 37 |
+
"question_list": [
|
| 38 |
+
{"type": "text", "text": "..."},
|
| 39 |
+
{"type": "image_path", "image_path": "images/3_q0.png"}
|
| 40 |
+
],
|
| 41 |
+
"answer": "①②③④⑤"
|
| 42 |
+
}
|
| 43 |
+
```
|
| 44 |
+
|
| 45 |
+
Image paths are relative to the ExamGeo directory.
|
| 46 |
+
|
| 47 |
+
## Load
|
| 48 |
+
|
| 49 |
+
```python
|
| 50 |
+
from datasets import load_dataset
|
| 51 |
+
|
| 52 |
+
dataset = load_dataset("json", data_files="data.jsonl", split="train")
|
| 53 |
+
example = dataset[0]
|
| 54 |
+
```
|
data.jsonl
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
images/10230_q0.png
ADDED
|
Git LFS Details
|
images/10457_q0.png
ADDED
|
Git LFS Details
|
images/10510_q0.png
ADDED
|
Git LFS Details
|
images/10526_q0.png
ADDED
|
Git LFS Details
|
images/11127_q0.png
ADDED
|
Git LFS Details
|
images/11156_q0.png
ADDED
|
Git LFS Details
|
images/129_q0.png
ADDED
|
Git LFS Details
|
images/2284_q0.png
ADDED
|
Git LFS Details
|
images/2770_q0.png
ADDED
|
Git LFS Details
|
images/2806_q0.png
ADDED
|
Git LFS Details
|
images/2814_q0.png
ADDED
|
Git LFS Details
|
images/31_q0.png
ADDED
|
Git LFS Details
|
images/3224_q0.png
ADDED
|
Git LFS Details
|
images/3259_q0.png
ADDED
|
Git LFS Details
|
images/3347_q0.png
ADDED
|
Git LFS Details
|
images/3408_q0.png
ADDED
|
Git LFS Details
|
images/3567_q0.png
ADDED
|
Git LFS Details
|
images/3685_q0.png
ADDED
|
Git LFS Details
|
images/392_q0.png
ADDED
|
Git LFS Details
|
images/4320_q0.png
ADDED
|
Git LFS Details
|
images/4512_q0.png
ADDED
|
Git LFS Details
|
images/5650_q0.png
ADDED
|
Git LFS Details
|
images/5733_q0.png
ADDED
|
Git LFS Details
|
images/5755_q0.png
ADDED
|
Git LFS Details
|
images/584_q0.png
ADDED
|
Git LFS Details
|
images/596_q0.png
ADDED
|
Git LFS Details
|
images/609_q0.png
ADDED
|
Git LFS Details
|
images/633_q0.png
ADDED
|
Git LFS Details
|
images/650_q0.png
ADDED
|
Git LFS Details
|
images/6749_q0.png
ADDED
|
Git LFS Details
|
images/674_q0.png
ADDED
|
Git LFS Details
|
images/6917_q0.png
ADDED
|
Git LFS Details
|
images/7248_q0.png
ADDED
|
Git LFS Details
|
images/7348_q0.png
ADDED
|
Git LFS Details
|
images/766_q0.png
ADDED
|
Git LFS Details
|
images/7686_q0.png
ADDED
|
Git LFS Details
|
images/778_q0.png
ADDED
|
Git LFS Details
|
images/8083_q0.png
ADDED
|
Git LFS Details
|
images/810_q0.png
ADDED
|
Git LFS Details
|
images/8302_q0.png
ADDED
|
Git LFS Details
|
images/8357_q0.png
ADDED
|
Git LFS Details
|
images/845_q0.png
ADDED
|
Git LFS Details
|
images/8506_q0.png
ADDED
|
Git LFS Details
|
images/9052_q0.png
ADDED
|
Git LFS Details
|
images/9386_q0.png
ADDED
|
Git LFS Details
|
images/9590_q0.png
ADDED
|
Git LFS Details
|
images/9760_q0.png
ADDED
|
Git LFS Details
|
images/9808_q0.png
ADDED
|
Git LFS Details
|