๐ค AI Summary
Existing tree-based reasoning methods (e.g., ProbTree) suffer from two key limitations: static tree structures and exhaustive strategy enumeration, leading to severe error propagation and high computational overhead. To address these issues, we propose Dynamic Probabilistic Tree Reasoning (DPTree), a reinforcement learningโdriven framework that models inference tree construction as a sequential decision process. DPTree dynamically expands the tree structure based on real-time node confidence scores and employs a policy network to adaptively select among decomposition, retrieval, or aggregation actions. It further introduces a confidence-weighted knowledge aggregation mechanism to preserve probabilistic rigor. Unlike static approaches, DPTree enables incremental, resource-aware growth of reasoning paths while ensuring sound probabilistic inference. Experiments on complex question-answering tasks demonstrate that DPTree achieves a +4.2% absolute accuracy gain and reduces average inference cost by 37%, validating its effectiveness and scalability in dynamic tree-based reasoning.
๐ Abstract
Modern language models address complex questions through chain-of-thought (CoT) reasoning (Wei et al., 2023) and retrieval augmentation (Lewis et al., 2021), yet struggle with error propagation and knowledge integration. Tree-structured reasoning methods, particularly the Probabilistic Tree-of-Thought (ProbTree)(Cao et al., 2023) framework, mitigate these issues by decomposing questions into hierarchical structures and selecting answers through confidence-weighted aggregation of parametric and retrieved knowledge (Yao et al., 2023). However, ProbTree's static implementation introduces two key limitations: (1) the reasoning tree is fixed during the initial construction phase, preventing dynamic adaptation to intermediate results, and (2) each node requires exhaustive evaluation of all possible solution strategies, creating computational inefficiency. We present a dynamic reinforcement learning (Sutton and Barto, 2018) framework that transforms tree-based reasoning into an adaptive process. Our approach incrementally constructs the reasoning tree based on real-time confidence estimates, while learning optimal policies for action selection (decomposition, retrieval, or aggregation). This maintains ProbTree's probabilistic rigor while improving both solution quality and computational efficiency through selective expansion and focused resource allocation. The work establishes a new paradigm for treestructured reasoning that balances the reliability of probabilistic frameworks with the flexibility required for real-world question answering systems.