Interpretable Knowledge Tracing via IRT

Created: 2026-05-07 | Tags: adaptive-learningintelligent-tutoringpersonalized-learninglearning-analyticsk-12llm
๐Ÿ“„ Full text: arXiv:2605.01097 ยท local
Most LLM-based dialogue tutoring systems produce opaque predictions. Huang et al. map raw LLM logits into student ability (ฮธ) and task difficulty (d) parameters via Item Response Theory, yielding predictions that are both more accurate and interpretable in cognitive terms.^huang-interpretable-knowledge-tracing-2026

The Problem with Opaque KT

Two critical gaps in dialogue-based Knowledge Tracing (KT):

1. Ignored question difficulty: Existing methods rely only on student knowledge states. When a tutor scaffolds up or increases task difficulty, predictions become inaccurate. 2. Opaque representations: High-dimensional LLM embeddings lack interpretability, making it hard to align predictions with learning theory or gain tutor trust.

The Framework

Built on Llama-3.1-8B-Instruct with three modules:

1. Knowledge Estimator

Extracts next-token logits for vocabulary tokens "GOOD" and "BAD" from dialogue history + original question: ฮธ = z^GOOD โˆ’ z^BAD

2. Difficulty Estimator

Extracts logits for "HARD" and "EASY" from dialogue history + next tutor-posed task: d = z^HARD โˆ’ z^EASY

3. IRT Predictor

Maps ability and difficulty into correctness probability via a 1PL (Rasch) model with learnable scalar ฮฑ: p(correct) = 1 / (1 + exp(โˆ’ฮฑ(ฮธ โˆ’ d)))

"This formulation provides interpretability since both student knowledge and task difficulty are explicitly represented as meaningful cognitive quantities."^huang-interpretable-knowledge-tracing-2026

Results

Evaluated on QATD2k (real) and MathDial (simulated) tutor-student dialogue datasets:

Model QATD2k AUC MathDial AUC
DKT 54.73 63.14
DKVMN 51.79 60.64
LLMKT 64.89 75.99
Ours (IRT) 65.25 76.59

LLM-based methods substantially outperform traditional deep learning models (โˆผ10-15 AUC points), and the explicit IRT parameterization slightly improves over raw LLMKT.^huang-interpretable-knowledge-tracing-2026

Relationship to Tutoring-Specific Design

This framework is an enabler for tutoring-specific AI: by explicitly modeling difficulty and student readiness at each turn, the system can dynamically calibrate scaffolds rather than defaulting to full assistance. It operationalizes the insight that general-purpose LLMs can be re-framed as psychometric instruments through prompt design.^huang-interpretable-knowledge-tracing-2026

Limitations

Related Pages

Sources