Distilling LLM Reasoning into Graph of Concept Predictors
Ziyang Yu, Liang Zhao
TL;DR
This work tackles the high cost of deploying LLMs for discriminative tasks by distilling their reasoning into a Graph of Concept Predictors (GCP), a DAG-based framework that extracts and transfers intermediate reasoning signals to a compact student. Key innovations include a graph-aware acquisition strategy that targets uncertainty, gradient diversity, and representativeness across reasoning nodes, and a targeted sub-module retraining procedure that attributes loss to specific concept predictors and updates only the most influential modules. Theoretical results claim GCP is strictly more expressive than flat CBMs/MLPs, enjoys faster linear convergence, and allows optimal top-K retraining with manageable time complexity. Empirically, GCP achieves stronger accuracy under limited annotation budgets across eight NLP benchmarks and substantially lowers compute relative to annotating with the full LLM, enabling scalable and interpretable LLM-assisted deployment. The approach offers practical benefits for domains requiring efficient, interpretable reasoning transfer and diagnostics, while acknowledging risks of propagating teacher biases through the concept graph.
Abstract
Deploying Large Language Models (LLMs) for discriminative workloads is often limited by inference latency, compute, and API costs at scale. Active distillation reduces these costs by querying an LLM oracle to train compact discriminative students, but most pipelines distill only final labels, discarding intermediate reasoning signals and offering limited diagnostics of what reasoning is missing and where errors arise. We propose Graph of Concept Predictors (GCP), a reasoning-aware active distillation framework that externalizes the teacher's decision process as a directed acyclic graph and mirrors it with modular concept predictors in the student. GCP enhances sample efficiency through a graph-aware acquisition strategy that targets uncertainty and disagreement at critical reasoning nodes. Additionally, it improves training stability and efficiency by performing targeted sub-module retraining, which attributes downstream loss to specific concept predictors and updates only the most influential modules. Experiments on eight NLP classification benchmarks demonstrate that GCP enhances performance under limited annotation budgets while yielding more interpretable and controllable training dynamics. Code is available at: https://github.com/Ziyang-Yu/GCP.
