SCPRM: A Schema-aware Cumulative Process Reward Model for Knowledge Graph Question Answering

TL;DR

Proposes SCPRM, integrating schema-aware distance for risk-sensitive multi-hop KG reasoning, improving accuracy by 1.18%.

cs.AI πŸ”΄ Advanced 2026-05-05 40 views
Jiujiu Chen Yazheng Liu Sihong Xie Hui Xiong
Knowledge Graph Question Answering Reward Model Risk Sensitivity Multi-hop Reasoning

Key Findings

Methodology

This paper introduces the Schema-aware Cumulative Process Reward Model (SCPRM), which combines path prefix conditioning and schema distance to compute cumulative and future rewards. Inspired by A* search, it models reward maximization as path evaluation, employing neural network heads to learn risk and future success estimates. The model integrates with Monte Carlo Tree Search (MCTS) for risk-sensitive KGQA, effectively addressing reward compensation issues by penalizing risky steps multiplicatively, thus enhancing reasoning safety and accuracy.

Key Results

  • On medical and legal KGQA datasets, SCPRM-MCTS outperformed baselines, with an average increase of 1.18% in Hits@k, demonstrating superior risk detection and path evaluation.
  • On CWQ, SCPRM-MCTS achieved better Hits@1 and Hits@3 scores, confirming robustness in complex multi-hop reasoning scenarios.
  • Ablation studies confirmed the critical role of schema distance and cumulative reward mechanisms in improving risk-sensitive reasoning performance.

Significance

This work advances KGQA by explicitly modeling path risk and logical constraints, crucial for high-stakes applications like medicine and law. It offers a robust framework to evaluate reasoning paths, reducing errors caused by reward compensation. The approach enhances the safety, reliability, and interpretability of AI-driven decision systems, addressing longstanding challenges in structured knowledge inference.

Technical Contribution

The paper introduces a reward framework based on A* search principles, integrating path prefix conditioning and schema-aware future success estimation. It employs neural heads for risk and future reward learning, combined with contrastive path ranking, surpassing traditional process reward models. This approach broadens the theoretical and engineering scope of reward-based reasoning, especially in risk-sensitive domains.

Novelty

First to incorporate schema distance into reward evaluation for knowledge graph reasoning, effectively mitigating risk compensation. The union of A*-style reward maximization with schema-aware future estimation represents a novel paradigm, significantly improving the safety and accuracy of multi-hop inference.

Limitations

  • Relies heavily on large pre-trained models, which entail high computational costs and may underperform in domain-specific knowledge gaps.
  • In highly noisy or complex graphs, path evaluation accuracy may decline, and generalization to unseen scenarios remains a challenge.
  • Model interpretability and transparency need further enhancement for practical deployment.

Future Work

Future directions include scaling to larger, multimodal knowledge graphs, integrating explainability modules, and developing active learning strategies to reduce training costs. Extending risk-sensitive reasoning to real-time decision-making in clinical and legal settings is also envisioned.

AI Executive Summary

The evolution of large language models (LLMs) has propelled natural language understanding into complex multi-step reasoning tasks, notably in knowledge graph question answering (KGQA). However, existing reward models often suffer from a critical flaw: the risk compensation effect, where incorrect reasoning steps are offset by later correct steps, leading to overestimated path quality. This issue is particularly problematic in high-stakes domains like medicine and law, where errors can have serious consequences.

To address this, the authors propose the Schema-aware Cumulative Process Reward Model (SCPRM), which innovatively combines schema distance estimation with a path evaluation framework inspired by A* search. SCPRM conditions the reward on reasoning prefixes and explicitly models the risk of each step via a neural risk head, while also estimating the likelihood of future success based on query schema alignment. This dual evaluation ensures that risky steps are penalized multiplicatively, preventing the reward compensation phenomenon.

In practical experiments, SCPRM integrated with Monte Carlo Tree Search (MCTS) significantly outperformed baseline models across multiple datasets, including medical and legal KGQA, with an average improvement of 1.18% in Hits@k metrics. The model demonstrated robust risk-sensitive reasoning, effectively filtering out hazardous paths and adhering to implicit logical constraints. Ablation studies confirmed the importance of schema distance and cumulative reward mechanisms, highlighting their roles in enhancing reasoning safety.

This research marks a substantial step forward in structured knowledge inference, offering a framework that balances logical correctness with risk awareness. Its implications extend to real-world applications such as clinical decision support and legal analysis, where reliability is paramount. Future work will focus on scaling the approach, improving interpretability, and deploying in dynamic, noisy environments, aiming to make AI reasoning both safer and more trustworthy.

Deep Dive

Abstract

Large language models excel at complex reasoning, yet evaluating their intermediate steps remains challenging. Although process reward models provide step-wise supervision, they often suffer from a risk compensation effect, where incorrect steps are offset by later correct ones, assigning high rewards to flawed reasoning paths. This issue is further exacerbated in knowledge graph (KG) reasoning, as there may exist multiple paths between the start and end entities in the KGs, and a risky step can make the reasoning path flawed. Those limitations are problematic in risk-sensitive tasks such as medical and legal KG reasoning. To address the issues, we propose a Schema-aware Cumulative Process Reward Model (SCPRM) that evaluates reasoning paths by conditioning on the reasoning prefix , and incorporating schema distance between current reasoning step and the implicit target parsed from the query, which provides cumulative and future rewards to guide the path explorations. We further integrate SCPRM into Monte Carlo Tree Search (MCTS) as SCPRM-MCTS to conduct multi-hop reasoning on KGs for question answering (QA) tasks. Across medical and legal KGQA and CWQ, SCPRM-MCTS improves the performance of Hits@k by an average of 1.18% over strong baselines, demonstrating more accurate and risk-sensitive reasoning evaluation.

cs.AI