CLAILGFeb 17, 2025

Atom of Thoughts for Markov LLM Test-Time Scaling

arXiv:2502.12018v263 citationsh-index: 26Has Code
Originality Incremental advance
AI Analysis

This addresses a bottleneck in enhancing LLM reasoning efficiency during inference, offering a plug-in solution for existing methods, though it is incremental as it builds on test-time scaling.

The paper tackles the problem of accumulated historical information in test-time scaling methods for Large Language Models, which wastes computational resources and interferes with reasoning, by proposing Atom of Thoughts (AoT), a method that decomposes complex reasoning into atomic subquestions with Markov properties. The result is improved reasoning capabilities, achieving an 80.6% F1 score on HotpotQA with gpt-4o-mini, surpassing other models by 3.4% to 10.6%.

Large Language Models (LLMs) achieve superior performance through training-time scaling, and test-time scaling further enhances their capabilities by conducting effective reasoning during inference. However, as the scale of reasoning increases, existing test-time scaling methods suffer from accumulated historical information, which not only wastes computational resources but also interferes with effective reasoning. To address this issue, we observe that complex reasoning can be achieved by solving a series of independent and self-contained subquestions. These subquestions are essentially \textit{atomic questions}, exhibiting the memoryless property similar to Markov processes. Based on this observation, we propose Atom of Thoughts (\our), where each state transition consists of decomposing the current question into a dependency-based directed acyclic graph and contracting its subquestions, forming a simplified question that maintains answer equivalence with the original problem. This answer preservation enables the iterative \textit{decomposition-contraction} process to naturally form a meaningful Markov reasoning process. Furthermore, these atomic states can be seamlessly integrated into existing test-time scaling methods, enabling \our to serve as a plug-in enhancement for improving reasoning capabilities. Experiments across six benchmarks demonstrate the effectiveness of \our both as a standalone framework and a plug-in enhancement. Notably, on HotpotQA, when applied to gpt-4o-mini, \our achieves an \textbf{80.6\%} F1 score, surpassing o3-mini by \textbf{3.4\%} and DeepSeek-R1 by \textbf{10.6\%}. The code is available at \href{https://github.com/qixucen/atom}{https://github.com/qixucen/atom}.

Code Implementations3 repos
Foundations

The foundational work for this paper's niche, ranked by how specifically the neighbourhood builds on it — not by global fame.

Your Notes