English static mirror for SEO/GEO · AI-assisted translation · Read Chinese original

Knowledge Graphs as Implicit Reward Models: Princeton's RLVR Framework for Medical Reasoning in LLMs

Forum topic · ✨步子哥 · 2026-02-20

Summary

Researchers Yuval Kansal and Niraj K. Jha at Princeton University propose a Reinforcement Learning with Verifiable Rewards (RLVR) framework that repurposes knowledge graphs as automated reward generators for large language model training. Built on Qwen-3 (14B main model, 8B for ablations), the three-stage pipeline—supervised fine-tuning with LoRA on 24,660 question-answer pairs derived from 1-3 hop UMLS knowledge graph paths, followed by GRPO-based reinforcement learning on ~5,000 samples—uses a composite reward combining binary answer correctness with path-alignment signals that verify each reasoning step against knowledge graph structure. The resulting 14B model achieves 89.33% accuracy on 5-hop medical reasoning tasks in ICD-Bench, outperforming much larger frontier models (GPT-5.2 ~70%, Gemini 3 Pro ~68%, Claude ~65%), and shows anomalous difficulty-adaptive behavior where accuracy rises with hop count. Under option-shuffling adversarial tests, performance drops only 1.17% versus 4-6% for frontier models, indicating genuine compositional reasoning rather than memorization. The analysis covers the reward function design (coverage scoring, minimum-hit constraints, repetition penalties), anti-reward-hacking mechanisms, cross-domain transfer prospects for law, finance, education, and physical sciences, and strategic implications for neuro-symbolic AI, explainability, and scaling-law limits.

Knowledge Graphs as Implicit Reward Models: Princeton's RLVR Framework for Medical Reasoning in LLMs

Princeton University researchers Yuval Kansal and Niraj K. Jha propose an RLVR (Reinforcement Learning with Verifiable Rewards) framework that repositions knowledge graphs from retrieval tools to automated reward generators, enabling scalable, verifiable process supervision for LLM post-training.

Key points

Methodology: three-stage training architecture

  • Base models: Qwen-3 series — 8B for ablation studies, 14B as the main experimental model. The team deliberately avoided larger scales (32B/70B) to test whether algorithmic efficiency can outperform parameter scale.
  • Stage 1 — SFT: LoRA-based parameter-efficient fine-tuning on 24,660 QA tasks generated from 1–3 hop paths in the UMLS knowledge graph. Each sample is a triple of natural-language question, chain-of-thought reasoning trace, and ground-truth KG path. A "Zero-RL" ablation (skipping SFT) showed almost no gains, revealing that models must first learn atomic facts before RL can teach combination.
  • Stage 2 — RL: GRPO (a PPO variant without a critic network) on only ~5,000 high-quality samples; checkpoints selected by validation return, batch size 512.
  • Composite reward function

    Total reward: R_total(y) = R_bin(a_hat, a*) + R_path(r, P)

  • R_bin (binary correctness): +0.1 for correct answers, −1 otherwise. The asymmetric 10:1 penalty-to-reward ratio stabilizes training and encourages exploration; the ratio was validated via ablations (optimal β/α between 8–12).
  • R_path (path alignment):
  • Coverage: token-level intersection between the reasoning trace and the KG path, normalized by path length, using medical-ontology entity normalization.
  • Minimum-hit constraint: requires at least 2 shared entities, blocking reward hacking via keyword repetition; threshold 2 sits at the precision-recall elbow (weight γ₂ = 0.3).
  • Repetition penalty φ_rep: exponential decay on repeated tokens, reducing linguistic collapse from ~15% to under 1%.
  • Reward cap R_max = 1.5 prevents process signal from overwhelming answer correctness. Weights γ₁ = 1.2, γ₂ = 0.3 were found via grid search plus Bayesian optimization; performance varies by <2% within ±20% of the optimum.
  • Data engineering

  • UMLS (US National Library of Medicine) supplies ~4M concepts, 14M concept names, 60M relational assertions, and 54 semantic relation types, including uncertain relations like maybe_causes.
  • Training set: 1–3 hop paths (24,660 questions, sized by power analysis).
  • Test set (ICD-Bench): 3,675 questions across 2–5 hops (2-hop 20%, 3-hop 25%, 4-hop 30%, 5-hop 25%), uniformly covering 15 ICD-10 disease categories.
  • Node coverage isolation: test-set concepts appear in <5% of training data (via UMLS CUIs), preventing memorization. Removing isolation boosts pure-SFT models by 8–10 points but SFT+RL models by only 2–3 points — evidence RL promotes genuine compositional ability.
  • Performance results

    | Model | 5-hop accuracy | Post-shuffle accuracy | Drop | |---|---|---|---| | 14B SFT+RL | 89.33% | 88.16% | 1.17% | | GPT-5.2 | ~70% | ~65.8% | ~4.2% | | Gemini 3 Pro | ~68% | ~62.2% | ~5.8% | | Claude series | ~65% | ~58.9% | ~6.1% |

  • The 14B SFT+RL model beats the 32B domain expert QwQ-Med-3 and outperforms frontier closed-source models by ~19 points on 5-hop tasks. Versus the 14B base model (19.9%), the full pipeline yields a ~4.5× improvement; RL adds 11.1 points over the SFT-only baseline (78.2%).
  • Difficulty adaptation: accuracy *rises* with hop count (2-hop 85.6% → 3-hop 87.1% → 4-hop 88.4% → 5-hop 89.3%) — the opposite trend of all compared models. A hypothesized mechanism: longer chains provide more verification anchors for intermediate self-checking.
  • Compositional generalization: trained only on 1–3 hops, the model zero-shot generalizes to 4–5 hop queries, attributed to the path-alignment reward teaching a meta-skill of KG traversal.
  • Robustness: under option shuffling, noise injection, and relation-type confusion tests, the SFT+RL model consistently degrades less, thanks to KG grounding of every reasoning step. Error analysis on Level-5 tasks shows SFT+RL reduces path interruption (35%→12%), concept confusion (28%→15%), and premature termination (22%→8%) relative to SFT-only.
  • Cross-domain transfer conditions

    The "KG-as-reward-model" paradigm requires: (1) sufficiently axiomatized domain knowledge (clear concept boundaries, well-defined relations); (2) composable relations with transitivity-preserving properties; (3) authoritative, maintainable knowledge sources. Candidate domains analyzed:

  • Law: statute–case–interpretation KGs for multi-hop precedent reasoning; challenges include interpretive openness and jurisdictional differences (suggesting multi-KG architectures).
  • Finance: regulatory–product–risk-transmission graphs for compliance checking; challenges include numerical threshold verification and rapid knowledge staleness.
  • Education: concept–prerequisite–skill hierarchies for personalized learning paths; challenges include multi-dimensional outcome evaluation.
  • Physical sciences: physics and chemistry KGs (e.g., reaction-mechanism graphs) suit the paradigm well; physics may require integration with computer algebra systems.
  • Key bottlenecks: cost of building/maintaining high-quality domain KGs, domain-specific reward tuning, and domain-appropriate path-length configuration.
  • Strategic implications

  • Neuro-symbolic revival: the KG acts as a symbolic verification interface while the LLM serves as the neural engine; path alignment converts logical constraints into differentiable optimization signals.
  • Explainability: every reasoning assertion maps to a verifiable KG path, enabling error localization and easing certification for safety-critical systems.
  • Scaling-law limits: a 14B model surpassing frontier models demonstrates that, for precise compositional reasoning, structured knowledge integration can outperform parameter scaling — supporting a "dual-track" future of large generalist models plus small KG-grounded specialist models.
  • Cognitive shift: training moves models from statistical pattern matching toward explicit logical derivation, internalizing KG structure into parameters without inference-time retrieval overhead.
tags

Tags

#knowledge-graphs#reinforcement-learning#llm-training#rlvr#medical-ai#compositional-generalization#neuro-symbolic-ai#qwen3

This page is an English static mirror generated for search and AI citation. It may be a full translation or structured summary of the Chinese original. Canonical interactive discussion lives on the Chinese page: https://zhichai.net/topic/176922852