REVIEW 3 major objections 5 minor 43 references
Accelerating Large Language Model Reasoning via Speculative Search
T0 review · 3 major / 5 minor · reviewed 2026-08-16 · deepseek-v4-flash
Pith's one-line read SpecSearch accelerates tree-search-based LLM reasoning by having a small model draft whole thoughts, reject low-quality ones, and correct them with token-level speculative decoding.
desk verdict A genuinely new bi-level speculative search method with consistent empirical speedups, but the advertised quality-preservation theorem has a proof error that changes the first-step bound from ~0.9995 to 0.5. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The load-bearing object is the quality-preserving rejection mechanism and its step-wise threshold. The threshold updates as an exponential moving average of the large model's recent thought scores: $\hat{\beta}^{(k+1)} = \theta \hat{\beta}^{(k)} + (1-\theta)\,\Theta(V_p^{(k)})$, where $\Theta$ is a nonparametric estimator such as the sample mean or the maximum. This converts the problem of matching the large model's reasoning quality into a statistical estimation problem: estimate the large model's thought-quality distribution from history, set the rejection bar there, and draft cheaply. The key identity is that, under a truncated-normal model for accepted thoughts, the mixture of accepted small-model thoughts and corrected large-model thoughts has expected process-reward score at least the large model's, provided the threshold is at least the large model's mean quality.
What would settle it
Take a set of problems where an incorrect intermediate step is known to receive a high process-reward score (the paper's Case 3 provides an example: an erroneous step scored 0.8916). Run SpecSearch and autoregressive tree search on that set and compare final-answer accuracy; if SpecSearch retains the misleading step and its accuracy falls below the large model's, the quality-preserving guarantee is protecting the reward score rather than reasoning correctness.
Extended reading notes
Core claim
On the paper's own terms, the central discovery is that speculative execution can be lifted from tokens to reasoning thoughts without giving up quality. The generator $G_s$ operates in a draft-evaluate-reject-correct loop: the small model $G_q$ drafts $N$ thoughts, the process reward model $V$ scores them, thoughts with $V(z) \ge \hat{\beta}^{(k)}$ are accepted, and rejected ones are regenerated by a lossless token-level speculative model $G_p$. The theoretical guarantee is the undegraded quality condition $\mathbb{E}_{z \sim G_s}[V(z)] \ge \mathbb{E}_{z \sim G_p}[V(z)]$. Theorem 4.3 shows this holds whenever the threshold satisfies $\beta^{(k)} \ge \mu_p^{(k)}$, the large model's mean thought quality at step $k$, under a normality assumption on thought qualities. Theorems 4.5 and 4.6 bound the probability that the estimated threshold stays above the large model's quality, with the bound tending to 1 as the drafting width $N$ grows. Empirically, on GSM8K-100 and MATH-100 with Qwen and Llama models, SpecSearch reports speedups up to 2.12x over speculative decoding and up to 4.11x over autoregressive search, with accuracy within about one point on the main sets.
Load-bearing premise
The load-bearing premise is that the scoring model used to judge each reasoning step is a faithful proxy for actual correctness: if a wrong step can receive a high score, the rejection mechanism preserves the score, not the answer.
Editorial extensions
If this is right
- Tree-search reasoning can run at near-small-model speed while keeping the large model's expected thought quality, as long as the threshold tracks the large model's quality.
- SpecSearch works on both Qwen and Llama stacks, with beam search and MCTS, and with different process reward models, so the acceleration is not tied to one search algorithm or evaluator.
- Because the probability bound improves as the drafting width N grows, wider speculative drafting is both a speed lever and a quality lever.
- The lossless token-level correction phase means rejected thoughts are replaced by draws from the large model's own token distribution, so the final reasoning path stays anchored to the large model.
Reading between the lines
- If the scorer's blind spots are the real limitation, SpecSearch could be paired with an outcome verifier or a correctness classifier trained on final answers; the same threshold machinery would then preserve final-answer accuracy instead of reward score.
- The descending step-wise threshold is itself a useful diagnostic: it quantifies how much harder later reasoning steps are for the large model, which could inform where to spend extra compute.
- The draft model can be as small as 0.5B, so a practical extension is to search over draft-model size and threshold aggressiveness to find a compute-optimal operating point for a given accuracy budget.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes SpecSearch, a framework to accelerate tree-search-based LLM reasoning by combining a small draft model with a large model at two levels: the small model generates candidate reasoning thoughts in parallel, a process reward model (PRM) scores them, and a threshold-based rejection mechanism accepts thoughts whose estimated quality is at least the large model's expected quality; rejected thoughts are regenerated with token-level speculative decoding. The threshold is updated with an exponential moving average of a nonparametric estimator over historical large-model thought quality. The paper claims a theoretical guarantee of undegraded reasoning quality, defined as expected PRM score, and reports speedups up to 2.12x over speculative decoding and 4.11x over autoregressive tree search on 100-question subsets of MATH and GSM8K, with additional results on full GSM8K, AIME, Olympiad Bench, and HumanEval.
Significance. The core idea is timely and useful: treating a reasoning thought as a speculative unit, not just a token sequence, is a natural extension of speculative decoding to search-based reasoning, and the reported speedups are consistent across several models, search algorithms, and PRM choices. The paper also deserves credit for including a theoretical section, ablations of the rejection and evaluation modules, and a case study that candidly documents a failure mode of the PRM. However, the central theoretical guarantee is not established as stated, and the empirical evidence for 'comparable reasoning quality' is thin relative to the strength of the claim. If the theoretical issue is repaired or the claim is weakened, and the empirical evaluation is made more rigorous, the contribution would be solid; in its current form the advertised guarantee exceeds what the proof and experiments support.
major comments (3)
- [Appendix A.4, Eq. (40) and Theorem 4.6] The proof of Theorem 4.6 miscomputes the initial threshold probability. Immediately before Eq. (40), the proof uses the sample-mean estimator: Eq. (3) defines beta^(k+1) as an EMA of the sample mean, and Eq. (39) gives Var[beta^(1)] = (sigma_p^(0))^2/(N+1), which is the variance of a sample mean of N+1 Gaussian draws. For such a sample mean, P(beta^(1) <= mu_p^(0)) = 1/2 by symmetry, not 2^{-(N+1)}. The value 2^{-(N+1)} is the probability that the maximum of N+1 draws is below the mean, which is not the estimator used in the proof. Consequently, the factor (1 - 2^{-(N+1)}) in Theorem 4.6 and the numerical example in Appendix A.5.1, which reports a bound of 0.90 at step 10 under N=10, are not justified; with the correct initial survival probability of roughly 1/2, that numerical support disappears. This is an internal inconsistency in the theoretical guarantee and must be repaired or the theorem restated in weaker form.
- [Section 4.3 and Appendix H.3] The quality-preserving guarantee operates entirely on the PRM score V(z), but the paper's central claim is 'comparable reasoning quality' measured by final-answer accuracy. The manuscript itself shows the gap between these two notions: in Appendix H.3, Case 3, an incorrect reasoning step receives a PRM score of 0.8916, and the experiment section reports accuracy drops on AIME (16.67 to 13.33) and Olympiad Bench (63.75 to 58.75) that are labeled 'comparable' without error bars or significance tests. The rejection mechanism provably preserves expected PRM score, not expected correctness; if V is a poor proxy for correctness, the theorem does not support the accuracy claim. The authors should either validate the PRM as a correctness proxy on their tasks, or explicitly reframe the theoretical and empirical claims as being about PRM score, with accuracy reported as a secondary, exploratory outcome.
- [Section 5 and Appendix D.1] The main empirical evidence is based on 100-question (and in the ablation, 50-question) test sets with a single run per condition and no confidence intervals, bootstrap errors, or significance tests. Differences of 1-3 accuracy points on 100 questions are within sampling noise, and the paper's phrasing such as 'comparable reasoning quality' and 'minimal accuracy loss' is stronger than the data support. In addition, the related work discusses SEED as a token-level speculative decoding baseline for tree-search reasoning, but SEED is not included in the experimental comparison; given that the paper's claimed advantage is specifically thought-level over token-level speculation, a SEED baseline would substantially strengthen the comparison. I recommend adding uncertainty quantification and at least one token-level tree-search acceleration baseline, or tempering the claims accordingly.
minor comments (5)
- [Section 4.2] There is a typo: 'see Tabel 1' should be 'see Table 1'.
- [Appendix A.5.1] The phrase 'The bound decent rapidly' should read 'The bound decays rapidly'.
- [Appendix A.5.3, Eq. (49)] The probability bound in Eq. (49) seems to have a product index k=0 to K while the event is written as (k+1) variables; please check the indexing for consistency with Theorem 4.6.
- [Appendix H.3] The sentence 'This observation clarifies why we observed low precision loss in our SpecSearch' is unclear; 'precision loss' is not a defined metric, and the case study actually illustrates a loss in accuracy caused by PRM deception.
- [Section 5, Experiment 4] Figure 4 shows average reward scores at each reasoning step; it would be helpful to state explicitly that this figure measures PRM score, not final-answer accuracy, to avoid conflating the two notions of quality.
Circularity Check
No circular derivation: the quality-preserving theorem is a conditional lemma, the threshold estimator is not fitted to the predicted quantity, and no load-bearing self-citation is present.
full rationale
The paper's central formal claim, Theorem 4.3, is explicitly conditional: if the step threshold satisfies beta(k) >= mu_p^(k), then the mixture of above-threshold small-model thoughts and large-model corrected thoughts has expected PRM score at least mu_p^(k). The proof derives this by computing the truncated-normal conditional mean, rather than assuming the conclusion; the burden of establishing the condition beta(k) >= mu_p^(k) is deferred to Theorems 4.5 and 4.6, which give probability bounds under the stated descending-quality and bounded-variance assumptions. This is not self-definitional: the undegraded-quality inequality is not an input to the rejection mechanism, and the theorem's conclusion does not reappear as an assumption. The step-wise threshold is an EMA of historical large-model PRM scores, and the 'prediction' concerns future large-model quality under an explicit monotonicity assumption; this is an extrapolation, not a fitted parameter renamed as a prediction. The experimental speedups and accuracies are measured against external baselines and are not derived from the fitted threshold, so there is no fitted-input-called-prediction pattern. Self-citations, to SEED and OpenR, are background related work or experimental infrastructure; no uniqueness theorem, ansatz, or load-bearing claim is imported from the authors' prior work, and the statistical tools cited (truncated normal, Cantelli's inequality, EMA) are standard external results. The paper does contain a serious independent proof error in Theorem 4.6 (the initial probability P(beta-hat^(1) <= mu_p^(0)) is claimed to be 2^{-(N+1)} for what the proof treats as a sample mean, whereas a sample mean of N+1 Gaussians is at or below its mean with probability 1/2), and Appendix H.3 concedes that an incorrect reasoning step can receive a high PRM score of 0.8916. These are correctness and construct-validity concerns, not circularity: they attack whether the advertised theoretical guarantee is proven and whether the PRM score faithfully tracks reasoning correctness, but they do not show that any derivation reduces to its own inputs by construction. Therefore the circularity score is 0.
Assumptions & free parameters
free parameters (2)
- EMA weight theta =
0.9
- Expansion width N and beam size b =
N=6, b=2
assumptions (4)
- domain assumption At each reasoning step, the qualities of thoughts generated by the large model Gp and small model Gq are independent and normally distributed with means mu_p, mu_q and mu_p >= mu_q (Section 4.4).
- domain assumption Assumption 4.4: the large model's mean thought quality decreases across steps, mu_p^(k) <= gamma mu_p^(k-1) with gamma < 1, and variance is bounded by sigma_c^2.
- domain assumption The process reward model V(z) is a valid measure of reasoning quality whose expectation is the right objective to preserve.
- ad hoc to paper Accepted small-model thoughts can be treated as an approximate upper bound on the large model's quality when forming the threshold estimate (Section 4.3).
Cite this review
Pith. "Pith review of Accelerating Large Language Model Reasoning via Speculative Search." pith.science (2026). https://pith.science/paper/FRJLIEQX
@misc{pith2026250502865,
author = {Pith},
title = {Pith review of: Accelerating Large Language Model Reasoning via Speculative Search},
year = {2026},
howpublished = {\url{https://pith.science/paper/FRJLIEQX}},
note = {Machine review of arXiv:2505.02865}
}
abstract
Tree-search-based reasoning methods have significantly enhanced the reasoning capability of large language models (LLMs) by facilitating the exploration of multiple intermediate reasoning steps, i.e., thoughts. However, these methods suffer from substantial inference latency, as they have to generate numerous reasoning thoughts, severely limiting LLM applicability. To address this challenge, we propose a novel Speculative Search (SpecSearch) framework that significantly accelerates LLM reasoning by optimizing thought generation. Specifically, SpecSearch utilizes a small model to strategically collaborate with a large model at both thought and token levels, efficiently generating high-quality reasoning thoughts. The major pillar of SpecSearch is a novel quality-preserving rejection mechanism, which effectively filters out thoughts whose quality falls below that of the large model's outputs. Moreover, we show that SpecSearch preserves comparable reasoning quality to the large model. Experiments on both the Qwen and Llama models demonstrate that SpecSearch significantly outperforms state-of-the-art approaches, achieving up to 2.12$\times$ speedup with comparable reasoning quality.
Figures
Figures from the paper (7 more)
Reference graph
Works this paper leans on
-
[1]
write newline
" write newline "" before.all 'output.state := FUNCTION n.dashify 't := "" t empty not t #1 #1 substring "-" = t #1 #2 substring "--" = not "--" * t #2 global.max substring 't := t #1 #1 substring "-" = "-" * t #2 global.max substring 't := while if t #1 #1 substring * t #2 global.max substring 't := if while FUNCTION format.date year duplicate empty "emp...
-
[2]
The truncated normal distribution
Burkardt, J. The truncated normal distribution. Department of Scientific Computing Website, Florida State University, 1 0 (35): 0 58, 2014
work page 2014
-
[3]
Burton, F. W. Speculative computation, parallelism, and functional programming. IEEE Trans. Computers , 34 0 (12): 0 1190--1193, 1985. doi:10.1109/TC.1985.6312218. URL https://doi.org/10.1109/TC.1985.6312218
arXiv 1985
-
[4]
Accelerating large language model decoding with speculative sampling
Chen, C., Borgeaud, S., Irving, G., Lespiau, J., Sifre, L., and Jumper, J. Accelerating large language model decoding with speculative sampling. CoRR, abs/2302.01318, 2023 a . doi:10.48550/ARXIV.2302.01318. URL https://doi.org/10.48550/arXiv.2302.01318
-
[5]
Alphamath almost zero: process supervision without process
Chen, G., Liao, M., Li, C., and Fan, K. Alphamath almost zero: process supervision without process. CoRR, abs/2405.03553, 2024. doi:10.48550/ARXIV.2405.03553. URL https://doi.org/10.48550/arXiv.2405.03553
-
[6]
Chen, Z., Yang, X., Lin, J., Sun, C., Huang, J., and Chang, K. C. Cascade speculative drafting for even faster LLM inference. CoRR, abs/2312.11462, 2023 b . doi:10.48550/ARXIV.2312.11462. URL https://doi.org/10.48550/arXiv.2312.11462
-
[7]
Training verifiers to solve math word problems
Cobbe, K., Kosaraju, V., Bavarian, M., Chen, M., Jun, H., Kaiser, L., Plappert, M., Tworek, J., Hilton, J., Nakano, R., Hesse, C., and Schulman, J. Training verifiers to solve math word problems. CoRR, abs/2110.14168, 2021. URL https://arxiv.org/abs/2110.14168
arXiv 2021
-
[8]
M., Kraaikamp, C., Lopuha \"a , H
Dekking, F. M., Kraaikamp, C., Lopuha \"a , H. P., and Meester, L. E. A Modern Introduction to Probability and Statistics: Understanding why and how. Springer Science & Business Media, 2006
work page 2006
Show all 43 references
- [9]
-
[10]
Interpretable contrastive monte carlo tree search reasoning
Gao, Z., Niu, B., He, X., Xu, H., Liu, H., Liu, A., Hu, X., and Wen, L. Interpretable contrastive monte carlo tree search reasoning. CoRR, abs/2410.01707, 2024. doi:10.48550/ARXIV.2410.01707. URL https://doi.org/10.48550/arXiv.2410.01707
-
[11]
Gopinath, R. A. Maximum likelihood modeling with gaussian distributions for classification. In Proceedings of the 1998 IEEE International Conference on Acoustics, Speech and Signal Processing, ICASSP'98 (Cat. No. 98CH36181), volume 2, pp.\ 661--664. IEEE, 1998
1998
-
[12]
J., Wang, Z., Wang, D
Hao, S., Gu, Y., Ma, H., Hong, J. J., Wang, Z., Wang, D. Z., and Hu, Z. Reasoning with language model is planning with world model. In Bouamor, H., Pino, J., and Bali, K. (eds.), Proceedings of the 2023 Conference on Empirical Methods in Natural Language Processing, EMNLP 2023...
2023 doi
-
[13]
Measuring mathematical problem solving with the MATH dataset
Hendrycks, D., Burns, C., Kadavath, S., Arora, A., Basart, S., Tang, E., Song, D., and Steinhardt, J. Measuring mathematical problem solving with the MATH dataset. In Vanschoren, J. and Yeung, S. (eds.), Proceedings of the Neural Information Processing Systems Track on Dataset...
2021
-
[14]
Hennessy, J. L. and Patterson, D. A. Computer Architecture - A Quantitative Approach, 5th Edition . Morgan Kaufmann, 2012. ISBN 978-0-12-383872-8
2012
- [15]
-
[16]
X., Liu, Z., Yan, D., Xie, J., Wang, Z., and Wen, J
Jiang, J., Chen, Z., Min, Y., Chen, J., Cheng, X., Wang, J., Tang, Y., Sun, H., Deng, J., Zhao, W. X., Liu, Z., Yan, D., Xie, J., Wang, Z., and Wen, J. Technical report: Enhancing LLM reasoning with reward-guided tree search. CoRR, abs/2411.11694, 2024. doi:10.48550/ARXIV.2411...
- [17]
-
[18]
Exponential moving average versus moving exponential average
Klinker, F. Exponential moving average versus moving exponential average. Mathematische Semesterberichte, 58: 0 97--107, 2011
2011
-
[19]
Cllms: Consistency large language models
Kou, S., Hu, L., He, Z., Deng, Z., and Zhang, H. Cllms: Consistency large language models. In Forty-first International Conference on Machine Learning, ICML 2024, Vienna, Austria, July 21-27, 2024 . OpenReview.net, 2024. URL https://openreview.net/forum?id=8uzBOVmh8H
2024
-
[20]
H., Gonzalez, J., Zhang, H., and Stoica, I
Kwon, W., Li, Z., Zhuang, S., Sheng, Y., Zheng, L., Yu, C. H., Gonzalez, J., Zhang, H., and Stoica, I. Efficient memory management for large language model serving with pagedattention. In Flinn, J., Seltzer, M. I., Druschel, P., Kaufmann, A., and Mace, J. (eds.), Proceedings o...
2023
-
[21]
Crafting papers on machine learning
Langley, P. Crafting papers on machine learning. In Langley, P. (ed.), Proceedings of the 17th International Conference on Machine Learning (ICML 2000), pp.\ 1207--1216, Stanford, CA, 2000. Morgan Kaufmann
2000
-
[22]
Fast inference from transformers via speculative decoding
Leviathan, Y., Kalman, M., and Matias, Y. Fast inference from transformers via speculative decoding. In Krause, A., Brunskill, E., Cho, K., Engelhardt, B., Sabato, S., and Scarlett, J. (eds.), International Conference on Machine Learning, ICML 2023, 23-29 July 2023, Honolulu, ...
2023
-
[23]
EAGLE: speculative sampling requires rethinking feature uncertainty
Li, Y., Wei, F., Zhang, C., and Zhang, H. EAGLE: speculative sampling requires rethinking feature uncertainty. In Forty-first International Conference on Machine Learning, ICML 2024, Vienna, Austria, July 21-27, 2024 . OpenReview.net, 2024. URL https://openreview.net/forum?id=...
2024
- [24]
-
[25]
Treebon: Enhancing inference-time alignment with speculative tree-search and best-of-n sampling
Qiu, J., Lu, Y., Zeng, Y., Guo, J., Geng, J., Wang, H., Huang, K., Wu, Y., and Wang, M. Treebon: Enhancing inference-time alignment with speculative tree-search and best-of-n sampling. arXiv preprint arXiv:2410.16033, 2024
2024 arXiv
-
[26]
Qwen2.5: A party of foundation models, September 2024
Team, Q. Qwen2.5: A party of foundation models, September 2024. URL https://qwenlm.github.io/blog/qwen2.5/
2024
-
[27]
M., Wen, Y., Zhang, W., and Wang, J
Wan, Z., Feng, X., Wen, M., McAleer, S. M., Wen, Y., Zhang, W., and Wang, J. Alphazero-like tree-search can guide large language model decoding and training. In Forty-first International Conference on Machine Learning, ICML 2024, Vienna, Austria, July 21-27, 2024 . OpenReview....
2024
-
[28]
Efficient large language models: A survey
Wan, Z., Wang, X., Liu, C., Alam, S., Zheng, Y., Liu, J., Qu, Z., Yan, S., Zhu, Y., Zhang, Q., Chowdhury, M., and Zhang, M. Efficient large language models: A survey. Transactions on Machine Learning Research, 2024 b . ISSN 2835-8856. URL https://openreview.net/forum?id=bsCCJH...
2024
-
[29]
M., Yang, L., Wen, Y., and Zhang, W
Wang, J., Fang, M., Wan, Z., Wen, M., Zhu, J., Liu, A., Gong, Z., Song, Y., Chen, L., Ni, L. M., Yang, L., Wen, Y., and Zhang, W. Openr: An open source framework for advanced reasoning with large language models. CoRR, abs/2410.09671, 2024 a . doi:10.48550/ARXIV.2410.09671. UR...
-
[30]
Math-shepherd: Verify and reinforce llms step-by-step without human annotations
Wang, P., Li, L., Shao, Z., Xu, R., Dai, D., Li, Y., Chen, D., Wu, Y., and Sui, Z. Math-shepherd: Verify and reinforce llms step-by-step without human annotations. In Ku, L., Martins, A., and Srikumar, V. (eds.), Proceedings of the 62nd Annual Meeting of the Association for Co...
2024 doi
-
[31]
SEED: accelerating reasoning tree construction via scheduled speculative decoding
Wang, Z., Wu, J., Lai, Y., Zhang, C., and Zhou, D. SEED: accelerating reasoning tree construction via scheduled speculative decoding. CoRR, abs/2406.18200, 2024 c . doi:10.48550/ARXIV.2406.18200. URL https://doi.org/10.48550/arXiv.2406.18200
-
[32]
H., Le, Q
Wei, J., Wang, X., Schuurmans, D., Bosma, M., Ichter, B., Xia, F., Chi, E. H., Le, Q. V., and Zhou, D. Chain-of-thought prompting elicits reasoning in large language models. In Koyejo, S., Mohamed, S., Agarwal, A., Belgrave, D., Cho, K., and Oh, A. (eds.), Advances in Neural I...
2022
-
[33]
Cantelli's inequality --- Wikipedia , the free encyclopedia, 2024
Wikipedia contributors . Cantelli's inequality --- Wikipedia , the free encyclopedia, 2024. URL https://en.wikipedia.org/w/index.php?title=Cantelli [Online; accessed 21-January-2025]
2024
-
[34]
Scaling inference computation: Compute-optimal inference for problem-solving with language models
Wu, Y., Sun, Z., Li, S., Welleck, S., and Yang, Y. Scaling inference computation: Compute-optimal inference for problem-solving with language models. In The 4th Workshop on Mathematical Reasoning and AI at NeurIPS'24, 2024. URL https://openreview.net/forum?id=j7DZWSc8qu
2024
-
[35]
Unlocking efficiency in large language model inference: A comprehensive survey of speculative decoding
Xia, H., Yang, Z., Dong, Q., Wang, P., Li, Y., Ge, T., Liu, T., Li, W., and Sui, Z. Unlocking efficiency in large language model inference: A comprehensive survey of speculative decoding. In Ku, L., Martins, A., and Srikumar, V. (eds.), Findings of the Association for Computat...
2024 doi
-
[36]
Decomposition enhances reasoning via self-evaluation guided decoding
Xie, Y., Kawaguchi, K., Zhao, Y., Zhao, X., Kan, M., He, J., and Xie, Q. Decomposition enhances reasoning via self-evaluation guided decoding. CoRR, abs/2305.00633, 2023. doi:10.48550/ARXIV.2305.00633. URL https://doi.org/10.48550/arXiv.2305.00633
- [37]
-
[38]
Tree of thoughts: Deliberate problem solving with large language models
Yao, S., Yu, D., Zhao, J., Shafran, I., Griffiths, T., Cao, Y., and Narasimhan, K. Tree of thoughts: Deliberate problem solving with large language models. In Oh, A., Naumann, T., Globerson, A., Saenko, K., Hardt, M., and Levine, S. (eds.), Advances in Neural Information Proce...
2023
-
[39]
Beyond the speculative game: A survey of speculative execution in large language models
Zhang, C., Liu, Z., and Song, D. Beyond the speculative game: A survey of speculative execution in large language models. CoRR, abs/2404.14897, 2024 a . doi:10.48550/ARXIV.2404.14897. URL https://doi.org/10.48550/arXiv.2404.14897
-
[40]
Rest-mcts*: LLM self-training via process reward guided tree search
Zhang, D., Zhoubian, S., Yue, Y., Dong, Y., and Tang, J. Rest-mcts*: LLM self-training via process reward guided tree search. CoRR, abs/2406.03816, 2024 b . doi:10.48550/ARXIV.2406.03816. URL https://doi.org/10.48550/arXiv.2406.03816
-
[41]
Gaussian distribution., 2010
Zhang, X. Gaussian distribution., 2010
2010
- [42]
-
[43]
A survey on efficient inference for large language models
Zhou, Z., Ning, X., Hong, K., Fu, T., Xu, J., Li, S., Lou, Y., Wang, L., Yuan, Z., Li, X., Yan, S., Dai, G., Zhang, X., Dong, Y., and Wang, Y. A survey on efficient inference for large language models. CoRR, abs/2404.14294, 2024. doi:10.48550/ARXIV.2404.14294. URL https://doi....
Reviewed August 16, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.