paper-with-me

홈 › Papers

Inference Scaling fLaws: The Limits of LLM Resampling with Imperfect Verifiers

2024-11-26 · Benedikt Stroebl, Sayash Kapoor, Arvind Narayanan

Recent research has generated hope that inference scaling could allow weaker language models to match or exceed the accuracy of stronger models, such as by repeatedly sampling solutions to a coding problem until it passes unit tests. The central thesis of this paper is that there is no free lunch for inference scaling: indefinite accuracy improvement through resampling can only be realized if the "verifier" (in this case, a set of unit tests) is perfect. When the verifier is imperfect, as it almost always is in domains such as reasoning or coding (for example, unit tests have imperfect coverage), there is a nonzero probability of false positives: incorrect solutions that pass the verifier. Resampling cannot decrease this probability, so it imposes an upper bound to the accuracy of resampling-based inference scaling even with an infinite compute budget. We find that there is a very strong correlation between the model's single-sample accuracy (i.e. accuracy without unit tests) and its false positive rate on coding benchmarks HumanEval and MBPP, whose unit tests have limited coverage. Therefore, no amount of inference scaling of weaker models can enable them to match the single-sample accuracy of a sufficiently strong model (Fig. 1a). When we consider that false positives have a negative utility compared to abstaining from producing a solution, it bends the inference scaling curve further downward. Empirically, we find that the optimal number of samples can be less than 10 under realistic assumptions (Fig. 1b). Finally, we show that beyond accuracy, false positives may have other undesirable qualities, such as poor adherence to coding style conventions.

📄 PDF Abstract BibTeX arXiv:2411.17501

Code (1)

benediktstroebl/inference-scaling-limits 공식 구현

Tasks

HumanEvalmbpp

Methods 이 논문이 사용한 방법론

SET Dynamic Sparse Training method where weight mask is updated randomly periodically

Similar Papers 제목 키워드 기반

Intrinsic Selection and Particle Resampling for Inference-Time Scaling Beyond Domain Verifiability

2026-06-07 · Giorgio Giannone, Mustafa Eyceoz, Shabana Baig, Shivchander Sudalairaj 외 arxiv

Inference-Time Scaling (ITS) has largely succeeded in verifiable domains like math and coding, where cheap verification enables scalable output selection. However, extending ITS to tasks prone to systematic failure - dri…

PARCEL: Pool-Anchored Resampling with Conditioned Elastic Queries for Efficient Vision-Language Understanding

2026-05-28 · Selim Kuzucu, Alessio Tonioni, Vasile Lup, Bernt Schiele 외 arxiv

Large Vision-Language Models (LVLMs) map visual inputs into dense token sequences, imposing a quadratic computational bottleneck for inference. Elastic visual-token compression addresses this by training a single model t…

Uncertainty-Aware Search and Value Models: Mitigating Search Scaling Flaws in LLMs

2025-02-16 · Fei Yu, Yingru Li, Benyou Wang

Value model-guided search is effective in steering the generation but suffers from scaling flaws: Its superiority diminishes with larger sample sizes, underperforming non-search baselines. This limitation arises from rel…

GSM8KThompson SamplingUncertainty Quantification

Widespread Flaws in Offline Evaluation of Recommender Systems

2023-07-27 · Balázs Hidasi, Ádám Tibor Czapp

Even though offline evaluation is just an imperfect proxy of online performance -- due to the interactive nature of recommenders -- it will probably remain the primary way of evaluation in recommender systems research fo…

Recommendation Systems

RAS: Reflection-Augmented Scaling with In-Context Learning for Executable Cypher Query Generation

2026-05-21 · Minseok Jung, Abhas Ricky, Muhammad Rameez Chatni arxiv

Inference-time scaling can reduce errors in structured query generation, but methods to allocate the compute for query code generation remains underexplored. We study Text2Cypher, where language models generate Cypher qu…

Code Generation