Datasets:
File size: 972 Bytes
2cba715 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 | ---
pretty_name: ExamGeo
language:
- en
task_categories:
- visual-question-answering
tags:
- geometry
- mathematics
- multimodal
size_categories:
- 1K<n<10K
configs:
- config_name: default
data_files:
- split: test
path: data.jsonl
---
# ExamGeo
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.
## Contents
```text
data.jsonl 1,000 problems
images/ 1,000 diagrams
```
Each line in `data.jsonl` has this format:
```json
{
"id": "3",
"difficulty": "0.2",
"question_list": [
{"type": "text", "text": "..."},
{"type": "image_path", "image_path": "images/3_q0.png"}
],
"answer": "①②③④⑤"
}
```
Image paths are relative to the ExamGeo directory.
## Load
```python
from datasets import load_dataset
dataset = load_dataset("json", data_files="data.jsonl", split="train")
example = dataset[0]
```
|