K12-KGraph: A Benchmark for Curriculum Cognition, Not Just Right Answers
A group of researchers released K12-KGraph, a knowledge graph aligned with school curriculum, to measure an ability that current benchmarks ignore: curriculum cognition. Instead of asking a model whether it knows the answer to an isolated question, the benchmark verifies whether it understands how knowledge is organized. Chains of prerequisites (what you need to know before learning X), concept taxonomies, links between experiments and concepts, correct pedagogical ordering, and visual recognition of a concept from an image.
Why it matters to you. If you build agents working in structured domains, reasoning about what comes before and after is what separates a useful assistant from one that skips steps. The difference between a colleague who knows how to break down a problem and one who starts from the end. Today models are evaluated on final answers, rather than on this capacity to navigate structure, and the result is that no one knows how well they actually manage it.
The benchmark (data in the paper published July 22, 2026 on Hugging Face) covers 9 node types, 14 relation types, 23,640 test questions, and 7,335 training examples, of which 5,068 are multimodal. The authors show that combining textual and visual supervision improves curriculum understanding. The graph, benchmark, training data, and construction pipeline are open-source.
In detail
What came before.
Benchmarks for educational LLMs have so far focused on answering exam questions. A model passes the test if it gives the right answer, but no one checks whether it understood why that answer comes after another, or which concept is a prerequisite for which. It’s the difference between knowing that 3 × 4 = 12 and knowing that multiplication requires already having internalized addition.
What changes.
K12-KGraph introduces a knowledge graph extracted from textbooks of the People’s Education Press, China’s official school publishing house. A knowledge graph is a network of concepts connected by explicit relations: “A is a prerequisite for B”, “A is a special case of B”, “experiment E illustrates concept C”. The benchmark, instead of asking ‘what is the answer?’, asks the model to reconstruct or verify these relations.
The novelty is that measuring this ability is useful outside school too. Any agent operating in a domain with knowledge structure, from corporate training to technical support, needs to know what to explain first and what after. If an onboarding agent skips prerequisites and jumps to advanced details, the result is confusion rather than learning.
Technical details.
The graph has 9 node types (concepts, experiments, figures, chapters, etc.) and 14 relation types. The 23,640 test questions cover different sub-abilities: identifying prerequisites, building taxonomies, connecting experiments to concepts, establishing pedagogical order, and recognizing concepts from images (visual grounding). The 5,068 multimodal examples are those where the model must read both text and an image to answer.
The authors trained models on the 7,335 training examples and discovered that combining text and images produces stronger curriculum understanding than text alone. It’s a signal that visual information matters, and that purely text-based models lose something when the domain has a structured visual component (schemas, diagrams, teaching figures).
Limitations.
The graph is built on a specific curriculum: China’s primary and secondary school system. The structure of prerequisites reflects the pedagogical choices of one educational system, not universal truth. A model skilled on this graph isn’t necessarily skilled at reconstructing prerequisites in, say, a technical regulation or a professional certification path. The training dataset is also small compared to fine-tuning standards for LLMs.
The point is that this benchmark, more than solving the problem of structural understanding, names it and makes it measurable. Until recently, no one tested this systematically.