REVIEW 3 major objections 6 minor 6 cited by
One-shot Entropy Minimization
T0 review · 3 major / 6 minor · reviewed 2026-08-07 · deepseek-v4-flash
Pith's one-line read This paper claims that minimizing a language model's token-level entropy on a single unlabeled prompt for ten optimization steps improves reasoning performance as much as, or more than, rule-based reinforcement learning trained on…
desk verdict The 13,440-run study is real and the EM effect is plausible, but the 'unlabeled one-shot' claim is contradicted by the label-based data selection in Section 2.2. 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 central object is the one-shot entropy minimization loss, the average token-level entropy over generated positions: $\mathcal{L}_{EM}(x;\theta)=\frac{1}{|I|}\sum_{t\in I} H_t$, with $H_t=-\sum_{v\in V} p_\theta(v|y_{<t},x)\log p_\theta(v|y_{<t},x)$. This loss is fully differentiable and needs no reward model, labels, or value baseline. The second load-bearing piece is variance-based data selection: from an unlabeled pool, pick the single prompt $x^*$ that maximizes the sample variance of pass@k correctness across multiple sampled responses, on the grounds that such prompts sit at the model's decision boundary and produce the largest entropy gradients. Together these turn entropy minimization into a ten-step, one-example procedure that the paper claims rivals RL.
What would settle it
Take a prompt whose correct answer is a rare, low-probability token but whose incorrect answer is high-confidence, run one-shot EM on that prompt, and check whether held-out accuracy falls instead of rises; this would directly test whether low entropy is actually correlated with correctness. A simpler version is to correlate, across many prompts, the model's entropy on its own final answer with whether that answer is correct, and show whether low-entropy wrong answers occur often enough to break the method.
Extended reading notes
Core claim
The central claim is that entropy minimization is a fully unsupervised post-training method that rivals or surpasses rule-based RL. The loss is the average conditional entropy over the generated tokens, and minimizing it makes the model more confident in its own token predictions. With a single unlabeled prompt chosen for high variance in the model's pass@k correctness, ten steps at learning rate 2e-5 and temperature 0.5 raised a 7-billion-parameter math base model from 53.0 to 78.8 on MATH500 and produced comparable jumps on other math benchmarks, a logic benchmark, and a code benchmark. The paper also reports that EM's training loss keeps decreasing past step 10 while benchmark scores decline, an 'overconfidence' effect, and that EM-trained models have strongly right-skewed logits whereas RL-trained models have left-skewed logits; it frames EM as confidence shaping that concentrates probability mass on high-probability reasoning paths, and finds that EM before RL helps while EM after RL hurts.
Load-bearing premise
The method assumes that a model's low-entropy token choices tend to be correct answers, so making the model more confident in its own predictions generally improves accuracy; if a confidently wrong answer has low entropy, EM will lock in that error.
Editorial extensions
If this is right
- One unlabeled prompt and ten optimization steps can substitute for thousands of labeled examples and hand-designed rewards when improving reasoning performance.
- Continuing EM beyond roughly ten steps degrades performance even as the loss falls, so early stopping is a built-in requirement, not optional.
- EM-trained models perform best at low sampling temperatures (greedy decoding), while RL-trained models improve at higher temperatures, so the two methods have opposite inference-time behavior.
- Applying EM before RL gives consistent gains, but applying EM after RL degrades performance, which constrains how post-training methods can be sequenced.
- The ceiling of EM's gains is set by the base model's intrinsic reasoning strength, so weak base models gain little.
Reading between the lines
- The paper does not independently test whether low-entropy predictions tend to be correct; if confidently wrong answers are common, one-shot EM could reinforce errors, and the observed gains would depend on the luck of the chosen prompt.
- Because EM shifts logits rightward and prefers greedy decoding, its gains may be partly reproducible by temperature scaling alone; comparing one-shot EM against inference-time temperature reduction would isolate what the parameter updates actually add.
- The paper's claim that EM is distribution shaping, not learning, implies EM cannot add knowledge; it can only expose latent ability, so one-shot EM could serve as a cheap diagnostic of a model's untapped reasoning quality before investing in RL.
- Seed-level variance in results (scores can differ by as much as a factor of two across identical settings) means the headline numbers are best-case or seed-lucky points; reporting the full seed distribution would be needed to know how robust the single-prompt result is.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes one-shot entropy minimization (EM) as a post-training method: minimize token-level entropy on a single prompt for only 10 optimization steps. The authors report that this achieves performance comparable to or better than rule-based RL baselines that use thousands of examples, on math, logic, and code benchmarks. The study is large-scale (13,440 trained models) and includes analyses of logit shifts, temperature sensitivity, and EM before/after RL.
Significance. If the claims held, this would be a striking result: a nearly free, fully unsupervised post-training boost that rivals RL. The paper's strengths are its scale, the release of code, and the attempt to characterize EM's behavior through logits and temperature analyses. However, the central claim is currently undermined by label-based data selection and by reporting best-of-seed results, so the headline contribution is not yet established.
major comments (3)
- [Section 2.2, Eq. (2)-(3)] The data-selection step is not label-free. Computing Var_pass@k(x) requires the indicator I[y^(i) is correct] via execution or string match, which requires ground-truth answers. This directly contradicts the abstract's "single unlabeled data" and Section 3.1's "we do not need any data labels." Because all reported results use the variance-selected prompt, the observed gains may come from supervised selection of a high-variance example rather than from entropy minimization per se. Please report results with a randomly chosen prompt, or explicitly reframe the contribution as one-shot EM with oracle example selection.
- [Section 3.5 and Section 3.8] The reported results are the peak over 16 seeds, and Figure 3 states that average scores can differ by as much as a factor of two across seeds. Tables 1 and 2 report single numbers without mean/median, standard deviation, or confidence intervals, so the headline improvements may be selection artifacts. Furthermore, Section 3.5 says temperature 0.5 was chosen because it creates "opportunities for higher peak performance," making the final result a best-of-temperature and best-of-seed selection.
- [Section 3.4, Figure 2] The choice of 10 training steps is made post hoc: the figure shows that benchmark performance peaks at step 10 while the EM loss continues to decrease. Thus "converges within 10 steps" is not a property of the method but an early-stopping rule selected using labeled evaluation data. Please report the full performance trajectory and either justify the stopping rule independently or acknowledge that 10 steps is a tuned hyperparameter.
minor comments (6)
- [Section 3.2] The text says "We present our experimental results in Table 3," but the corresponding table is Table 1.
- [Section 3.9] The phrase "as depicted in Figure 3.4" appears to refer to Figure 2; the reference is incorrect.
- [Abstract and Section 3.1] There are typos: "avaliable" in the abstract, "Acclerate" in Section 3.1, and "evalutating" in Section 3.6.
- [Section 3.8 vs Table 2] The text's LLaMA-3.1-8B numbers (23.6% to 24.3%) and Qwen2.5-7B-Instruct numbers (43.12% to 44.5%) do not match Table 2, which shows 32.0 to 33.1 and 50.3 to 49.8, respectively. This inconsistency makes the cross-model discussion unreliable.
- [Table 1] The claim of competitiveness with RL should be qualified: on KK and MBPP, the EM model scores 17.4 and 65.1, while SimpleRL-Zoo scores 27.2 and 78.3, so EM is not universally superior.
- [Table 1] The RL baselines may not be directly comparable because they use different base models and training data; please state the base model and data for each baseline clearly.
Circularity Check
Supervised prompt selection contradicts the 'single unlabeled data' claim, but the EM objective itself is label-free and benchmark results are external.
-
fitted input called prediction
[Section 2.2 (Data Selection), pass@k and x* definitions; Section 3.1 (Experimental Setting)]
"We then compute the pass@k score as: pass@k(x) = 1/k Σ I[y(i) is correct], where I[·] is the indicator function for whether a sample is considered correct (via execution or string match). ... x∗ = arg max x∈D Varpass@k(x), where D denotes the unlabeled data pool. ... Since it is an unsupervised method, we do not need any data labels."
The single prompt used in all headline EM runs is chosen by x* = argmax Varpass@k(x), and Varpass@k is defined from I[y(i) is correct], which requires ground-truth correctness labels. Therefore the 'unlabeled' status of the single data is false by construction: labels are used to select the one prompt, even though the EM loss itself does not consume labels. All reported results use this label-selected prompt, so the advertised 'single unlabeled data' result is partly an artifact of supervised selection and cannot be taken as evidence for label-free entropy minimization alone.
full rationale
The paper is primarily an empirical study rather than a formal derivation, and its benchmark evaluations on MATH500, MinervaMath, OlympiadBench, AMC23, KK, and MBPP are external, so the core results are not tautological. The EM objective is a standard token-level entropy loss and is itself label-free; no load-bearing self-citation chain or imported uniqueness theorem was found. The one significant circularity-adjacent defect is the data-selection step: the single prompt is selected by maximizing pass@k variance, which requires knowing which sampled responses are correct, directly contradicting the abstract's and Section 3.1's 'unlabeled' and 'no data labels' claims. This does not force the benchmark numbers—the gains could still be real—but it means the headline 'single unlabeled data' framing overstates how unsupervised the pipeline is. Score 4 reflects that partial circularity while acknowledging the independent empirical content.
Assumptions & free parameters
free parameters (5)
- Training temperature =
0.5
- Learning rate =
2e-5
- Batch size =
64
- Training steps =
10
- Reported seed selection =
best of 16
assumptions (3)
- domain assumption Correct answers generally have lower entropy than incorrect ones.
- domain assumption A single prompt selected by pass@k variance is sufficient to transfer distribution reshaping to broad benchmarks.
- domain assumption The model's pass@k variance is a computable and meaningful 'entropy-sensitivity' measure.
Cite this review
Pith. "Pith review of One-shot Entropy Minimization." pith.science (2026). https://pith.science/paper/PVUK3DSP
@misc{pith2026250520282,
author = {Pith},
title = {Pith review of: One-shot Entropy Minimization},
year = {2026},
howpublished = {\url{https://pith.science/paper/PVUK3DSP}},
note = {Machine review of arXiv:2505.20282}
}
read the original abstract
We trained 13,440 large language models and found that entropy minimization requires only a single unlabeled data and 10 steps optimization to achieve performance improvements comparable to or even greater than those obtained using thousands of data and carefully designed rewards in rule-based reinforcement learning. This striking result may prompt a rethinking of post-training paradigms for large language models. Our code is avaliable at https://github.com/zitian-gao/one-shot-em.
Figures
Figures from the paper (3 more)
Forward citations
Cited by 6 Pith papers
-
Relationship-Centered Care: Relatedness and Responsible Design for Human Connections in Mental-Health Care
Length-aware GFlowNet matching of α-power base distributions elicits either stronger LLM reasoning (α>1) or restored creativity (α<1) without external supervision, matching or beating RLIF and GRPO baselines.
-
Know When to Explore: Difficulty-Aware Certainty as a Guide for LLM Reinforcement Learning
A new RL reward-shaping method that rewards low confidence on hard problems and high confidence on easy ones improves LLM math reasoning over a GRPO baseline.
-
THIRDEYE: Cue-Aware Monocular Depth Estimation via Brain-Inspired Multi-Stage Fusion
A cue-aware monocular depth estimation architecture that fuses frozen specialist networks via a cortical-style hierarchy and key-value memory, with no experimental results provided yet.
-
Harnessing Uncertainty: Entropy-Modulated Policy Gradients for Long-Horizon LLM Agents
EMPG re-weights policy-gradient updates by step-level token entropy, amplifying confident correct actions and muting uncertain ones, and adds a future-clarity bonus.
-
EDGE-GRPO: Entropy-Driven GRPO with Guided Error Correction for Advantage Diversity
EDGE-GRPO reduces advantage collapse in GRPO by injecting reference solutions into response groups and scaling advantages by policy entropy, achieving competitive math reasoning with only 1K training samples.
-
No Free Lunch: Rethinking Internal Feedback for LLM Reasoning
Internal feedback rewards (entropy and self-certainty) improve base LLM math reasoning only in early training and degrade later, with little benefit for instruct models.
Reference graph
Works this paper leans on
-
[1]
The unreasonable effectiveness of entropy minimization in llm reasoning, 2025
Shivam Agarwal, Zimin Zhang, Lifan Yuan, Jiawei Han, and Hao Peng. The unreasonable effectiveness of entropy minimization in llm reasoning, 2025
2025
-
[2]
Program synthesis with large language models, 2021
Jacob Austin, Augustus Odena, Maxwell Nye, Maarten Bosma, Henryk Michalewski, David Dohan, Ellen Jiang, Carrie Cai, Michael Terry, Quoc Le, and Charles Sutton. Program synthesis with large language models, 2021
2021
-
[3]
Stephen Casper, Xander Davies, Claudia Shi, Thomas Krendl Gilbert, Jérémy Scheurer, Javier Rando, Rachel Freedman, Tomasz Korbak, David Lindner, Pedro Freire, Tony Wang, Samuel Marks, Charbel-Raphaël Segerie, Micah Carroll, Andi Peng, Phillip Christoffersen, Mehul Damani, Stewart Slocum, Usman Anwar, Anand Siththaranjan, Max Nadeau, Eric J. Michaud, Jacob...
work page 2023
-
[4]
Process reinforcement through implicit rewards, 2025
Ganqu Cui, Lifan Yuan, Zefan Wang, Hanbin Wang, Wendi Li, Bingxiang He, Yuchen Fan, Tianyu Yu, Qixin Xu, Weize Chen, Jiarui Yuan, Huayu Chen, Kaiyan Zhang, Xingtai Lv, Shuo Wang, Yuan Yao, Xu Han, Hao Peng, Yu Cheng, Zhiyuan Liu, Maosong Sun, Bowen Zhou, and Ning Ding. Process reinforcement through implicit rewards, 2025
2025
-
[5]
DeepSeek-AI, Daya Guo, Dejian Yang, Haowei Zhang, Junxiao Song, Ruoyu Zhang, Runxin Xu, Qihao Zhu, Shirong Ma, Peiyi Wang, Xiao Bi, Xiaokang Zhang, Xingkai Yu, Yu Wu, Z. F. Wu, Zhibin Gou, Zhihong Shao, Zhuoshu Li, Ziyi Gao, Aixin Liu, Bing Xue, Bingxuan Wang, Bochao Wu, Bei Feng, Chengda Lu, Chenggang Zhao, Chengqi Deng, Chenyu Zhang, Chong Ruan, Damai D...
work page 2025
-
[6]
Interpretable contrastive monte carlo tree search reasoning, 2024
Zitian Gao, Boye Niu, Xuzheng He, Haotian Xu, Hongzhang Liu, Aiwei Liu, Xuming Hu, and Lijie Wen. Interpretable contrastive monte carlo tree search reasoning, 2024
2024
-
[7]
Qi Gou and Cam-Tu Nguyen. Mixed preference optimization: Reinforcement learning with data selection and better reference model, 2025
work page 2025
-
[8]
Accelerate: Training and inference at scale made simple, efficient and adaptable
Sylvain Gugger, Lysandre Debut, Thomas Wolf, Philipp Schmid, Zachary Mueller, Sourab Mangrulkar, Marc Sun, and Benjamin Bossan. Accelerate: Training and inference at scale made simple, efficient and adaptable. https://github.com/huggingface/accelerate, 2022
2022
Show all 28 references
-
[9]
Olympiadbench: A challenging benchmark for promoting agi with olympiad-level bilingual multimodal scientific problems, 2024
Chaoqun He, Renjie Luo, Yuzhuo Bai, Shengding Hu, Zhen Leng Thai, Junhao Shen, Jinyi Hu, Xu Han, Yujie Huang, Yuxiang Zhang, Jie Liu, Lei Qi, Zhiyuan Liu, and Maosong Sun. Olympiadbench: A challenging benchmark for promoting agi with olympiad-level bilingual multimodal scienti...
2024
-
[10]
Reinforce++: A simple and efficient approach for aligning large language models, 2025
Jian Hu. Reinforce++: A simple and efficient approach for aligning large language models, 2025
2025
-
[11]
Open-reasoner-zero: An open source approach to scaling up reinforcement learning on the base model, 2025
Jingcheng Hu, Yinmin Zhang, Qi Han, Daxin Jiang, Xiangyu Zhang, and Heung-Yeung Shum. Open-reasoner-zero: An open source approach to scaling up reinforcement learning on the base model, 2025
2025
-
[12]
Solving quantitative reasoning problems with language models, 2022
Aitor Lewkowycz, Anders Andreassen, David Dohan, Ethan Dyer, Henryk Michalewski, Vinay Ramasesh, Ambrose Slone, Cem Anil, Imanol Schlag, Theo Gutman-Solo, Yuhuai Wu, Behnam Neyshabur, Guy Gur-Ari, and Vedant Misra. Solving quantitative reasoning problems with language models, 2022
2022
-
[13]
Numinamath
Jia LI, Edward Beeching, Lewis Tunstall, Ben Lipkin, Roman Soletskyi, Shengyi Costa Huang, Kashif Rasul, Longhui Yu, Albert Jiang, Ziju Shen, Zihan Qin, Bin Dong, Li Zhou, Yann Fleureau, Guillaume Lample, and Stanislas Polu. Numinamath. [https://huggingface.co/AI-MO/NuminaMath...
2024
-
[14]
Let’s verify step by step
Hunter Lightman, Vineet Kosaraju, Yura Burda, Harri Edwards, Bowen Baker, Teddy Lee, Jan Leike, John Schulman, Ilya Sutskever, and Karl Cobbe. Let’s verify step by step. arXiv preprint arXiv:2305.20050, 2023
2023 arXiv
-
[15]
Understanding r1-zero-like training: A critical perspective, 2025
Zichen Liu, Changyu Chen, Wenjun Li, Penghui Qi, Tianyu Pang, Chao Du, Wee Sun Lee, and Min Lin. Understanding r1-zero-like training: A critical perspective, 2025
2025
-
[16]
Introducing openai o1
OpenAI. Introducing openai o1. https://openai.com/o1/, 2024. Accessed: 2024-10-02
2024
-
[17]
Introducing openai o3 and o4-mini, April 2025
OpenAI. Introducing openai o3 and o4-mini, April 2025. Accessed: 2025-05-27
2025
-
[18]
Direct preference optimization: Your language model is secretly a reward model
Rafael Rafailov, Archit Sharma, Eric Mitchell, Christopher D Manning, Stefano Ermon, and Chelsea Finn. Direct preference optimization: Your language model is secretly a reward model. In A. Oh, T. Naumann, A. Globerson, K. Saenko, M. Hardt, and S. Levine, editors, Advances in N...
2023
-
[19]
Lee, and Sanjeev Arora
Noam Razin, Zixuan Wang, Hubert Strauss, Stanley Wei, Jason D. Lee, and Sanjeev Arora. What makes a reward model a good teacher? an optimization perspective, 2025
2025
-
[20]
Proximal policy optimization algorithms, 2017
John Schulman, Filip Wolski, Prafulla Dhariwal, Alec Radford, and Oleg Klimov. Proximal policy optimization algorithms, 2017
2017
-
[21]
Zhihong Shao, Peiyi Wang, Qihao Zhu, Runxin Xu, Junxiao Song, Xiao Bi, Haowei Zhang, Mingchuan Zhang, Y . K. Li, Y . Wu, and Daya Guo. Deepseekmath: Pushing the limits of mathematical reasoning in open language models, 2024. 13
2024
-
[22]
Kimi Team, Angang Du, Bofei Gao, Bowei Xing, Changjiu Jiang, Cheng Chen, Cheng Li, Chenjun Xiao, Chenzhuang Du, Chonghua Liao, Chuning Tang, Congcong Wang, Dehao Zhang, Enming Yuan, Enzhe Lu, Fengxiang Tang, Flood Sung, Guangda Wei, Guokun Lai, Haiqing Guo, Han Zhu, Hao Ding, ...
2025
-
[23]
Reinforcement learning for reasoning in large language models with one training example, 2025
Yiping Wang, Qing Yang, Zhiyuan Zeng, Liliang Ren, Lucas Liu, Baolin Peng, Hao Cheng, Xuehai He, Kuan Wang, Jianfeng Gao, Weizhu Chen, Shuohang Wang, Simon Shaolei Du, and Yelong Shen. Reinforcement learning for reasoning in large language models with one training example, 2025
2025
-
[24]
On memorization of large language models in logical reasoning
Chulin Xie, Yangsibo Huang, Chiyuan Zhang, Da Yu, Xinyun Chen, Bill Yuchen Lin, Bo Li, Badih Ghazi, and Ravi Kumar. On memorization of large language models in logical reasoning. 2024
2024
-
[25]
Logic-rl: Unleashing llm reasoning with rule-based reinforcement learning, 2025
Tian Xie, Zitian Gao, Qingnan Ren, Haoming Luo, Yuqian Hong, Bryan Dai, Joey Zhou, Kai Qiu, Zhirong Wu, and Chong Luo. Logic-rl: Unleashing llm reasoning with rule-based reinforcement learning, 2025
2025
-
[26]
Towards large reasoning models: A survey of reinforced reasoning with large language models, 2025
Fengli Xu, Qianyue Hao, Zefang Zong, Jingwei Wang, Yunke Zhang, Jingyi Wang, Xiaochong Lan, Jiahui Gong, Tianjian Ouyang, Fanjin Meng, Chenyang Shao, Yuwei Yan, Qinglong Yang, Yiwen Song, Sijian Ren, Xinyuan Hu, Yu Li, Jie Feng, Chen Gao, and Yong Li. Towards large reasoning m...
2025
-
[27]
Redstar: Does scaling long-cot data unlock better slow-reasoning systems?, 2025
Haotian Xu, Xing Wu, Weinong Wang, Zhongzhi Li, Da Zheng, Boyuan Chen, Yi Hu, Shijia Kang, Jiaming Ji, Yingying Zhang, Zhijiang Guo, Yaodong Yang, Muhan Zhang, and Debing Zhang. Redstar: Does scaling long-cot data unlock better slow-reasoning systems?, 2025
2025
-
[28]
Simplerl-zoo: Investigating and taming zero reinforcement learning for open base models in the wild, 2025
Weihao Zeng, Yuzhen Huang, Qian Liu, Wei Liu, Keqing He, Zejun Ma, and Junxian He. Simplerl-zoo: Investigating and taming zero reinforcement learning for open base models in the wild, 2025. 14
2025
Reviewed August 7, 2026 · model on record in the stance chip above.
Discussion (0). Sign in to comment.