pH202411/ExamGeo
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 data.jsonl 1,000 problems images/ 1,000 diagrams Each line in data.jsonl has this format: { "id": "3", "difficulty": "0.2", "question_list": [ {"type": "text", "text": "..."}, {"type": "image_path", "image_path": "images/3_q0.png"} ], "answer":… See the full description on the dataset page: https://huggingface.co/datasets/pH202411/ExamGeo.
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
data.jsonl 1,000 problems
images/ 1,000 diagramsEach line in data.jsonl has this format:
{
"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
from datasets import load_dataset
dataset = load_dataset("json", data_files="data.jsonl", split="train")
example = dataset[0]