REVIEW 4 major objections 6 minor 61 references
Hyper-ES: Effective Evolution Strategies for LLM Reasoning via Descent Direction Merging
T0 review · 4 major / 6 minor · reviewed 2026-08-08 · deepseek-v4-flash
Pith's one-line read Short gradient runs define a subspace where evolution search beats longer single-run fine-tuning.
desk verdict Sensible method paper with a coherent pipeline and honest ablations, but the headline 1% gain over GRPO+LoRA is within noise; worth a serious referee, not acceptance as stated. 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 descent direction pool P = {Δθ_i^(ℓ)} built from N few-shot (7-step) GRPO LoRA runs on difficulty-grouped subsets, with each delta computed as (α/r) B_i A_i without materializing a full model. CMA-ES then searches a vector z of size L×2N (here 960 for the 0.5B model) containing, per layer group, DARE drop-rate logits and non-negative mixing-weight logits; decoding applies DARE sparsification, weighted TIES sign election and disjoint merge, and a validation-selected global scale γ to assemble θ*(z). The machinery replaces full-parameter direction discovery with low-dimensional direction selection: the span must be task-aligned (Proposition 2 formalizes the benefit when the projection cosine c>0), and the fitness steering CMA-ES is 600-sample validation accuracy.
What would settle it
Compare, across several seeds, the validation accuracy of the Hyper-ES merged model with that of a single GRPO+LoRA run continued until it has consumed the same total number of gradient-requiring samples on the same data; the central claim is settled by whether the merged model's accuracy exceeds the single run's.
Extended reading notes
Core claim
On three backbones across six math reasoning benchmarks, Hyper-ES consistently outperforms single-stage GRPO+LoRA by about 1% average accuracy (57.13 vs 56.23 for Qwen2.5-0.5B; 74.26 vs 73.51 for Qwen2.5-1.5B; 70.97 vs 70.39 for DeepSeek-R1-Distill-Qwen-1.5B) while using 17,920 versus 20,000 gradient-requiring samples. The discovery is that the span S = span{Δθ_1,...,Δθ_N} of short GRPO LoRA deltas, searched via layer-wise merging coefficients, carries enough task-aligned signal that evolution strategy over combinations of these directions beats the model produced by a longer single gradient run; random directions in the same search space collapse to near-base performance (47.58), showing the deltas themselves, not low dimensionality alone, are what make the search work.
Load-bearing premise
The short GRPO runs produce LoRA deltas whose span has a positive projection onto the true loss-reducing direction (c > 0), and the 600-sample validation accuracy is a reliable enough fitness signal that CMA-ES's coefficient search is not chasing noise.
Editorial extensions
If this is right
- GRPO-style gradient updates can serve as direction providers rather than final trainers, making short runs reusable building blocks.
- ES retains its memory-light, parallelizable character while avoiding the high-dimensional orthogonality failure documented in Lemmas 1–2.
- Fewer gradient-requiring samples suffice: 7-step directions use 17,920 samples and beat the 20,000-sample full GRPO run; 4-step directions still reach 55.71%.
- Layer-wise, direction-specific merging coefficients beat uniform merging (Average Merge 55.64 vs Hyper-ES 57.13 on Qwen2.5-0.5B) and grid-only merging (55.92).
- The same direction-pool search also improves out-of-domain code generation on Qwen2.5-1.5B (38.44 to 46.45), suggesting the mechanism is not specific to math.
Reading between the lines
- Editorial inference: If the finding holds generally, the last part of RL fine-tuning may be better spent selecting a combination of short gradient runs than extending one run; a testable consequence is that a larger pool of even shorter or fewer-step runs could continue to improve accuracy.
- Editorial inference: Any cheap gradient signal, such as SFT or other policy-gradient variants, could plausibly seed the direction pool; the paper tests only GRPO, leaving this as an open extension.
- Editorial inference: A sharper comparison would pit Hyper-ES against GRPO+LoRA at equal wall-clock time rather than equal gradient samples, since the paper's parallelized 3.23 h already undercuts the 4.25 h baseline but is not the headline comparison.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. This paper proposes Hyper-ES, a two-stage fine-tuning method for LLM reasoning. In the first stage, the method partitions the training data into N subsets and runs a short GRPO+LoRA fine-tuning run (7 steps) on each subset, caching the resulting LoRA deltas as descent directions. In the second stage, the base model and the direction pool are frozen, and CMA-ES optimizes a vector z of layer-wise DARE-TIES merging coefficients (drop-rate logits and mixing-weight logits), with fitness defined as accuracy on a 600-question validation set. The paper reports results on Qwen2.5-0.5B-Instruct, Qwen2.5-1.5B-Instruct, and DeepSeek-R1-Distill-Qwen-1.5B across six math benchmarks, claiming an average improvement of about 1% over GRPO+LoRA while using 17,920 instead of 20,000 gradient-requiring samples. The paper also provides Lemmas 1 and 2 on the orthogonality and random-walk failure of direct ES in high dimensions, and Proposition 2 formalizes the task-alignment condition under which searching in the direction-pool span is beneficial.
Significance. The idea of using a few short gradient runs to define a low-dimensional subspace and then applying CMA-ES to merge those directions is interesting and, if confirmed, would have practical value for resource-constrained fine-tuning: it would show that the span of short task vectors can contain models that outperform the endpoint of a longer gradient run. The paper ships code and includes ablations that support the proposed mechanism: removing CMA-ES (Table 3, -1.21 points), removing difficulty grouping (Table 3, -3.51 points), and replacing GRPO directions with random directions (Table 4, 47.58 vs 57.13) all degrade performance. The geometric lemmas are standard but clearly stated. However, the headline empirical claim is not yet statistically established; the reported margins are comparable to or smaller than the noise level of the evaluation, and the multi-seed experiment in Appendix E.4.1 does not show a significant difference.
major comments (4)
- [§4.2–4.3, Tables 1–2; Appendix E.4.1, Table 11] The central claim that Hyper-ES 'consistently outperforms GRPO-LoRA by 1%' is not supported at conventional significance levels. Tables 1 and 2 report single-run test accuracies without variance; the average margins are 0.90, 0.75, and 0.58 points across the three backbones. The only repeated-seed experiment (Table 11, n=3) gives Hyper-ES 56.62±0.44 versus GRPO+LoRA 56.04±0.29; the difference of 0.58 has a pooled standard error of roughly 0.30, so it is not significant (t≈1.9, p>0.05), and the in-domain GSM8K result is numerically worse (50.85 vs 50.92). Please report per-benchmark confidence intervals over at least five independent runs and a formal comparison (e.g., paired test or mixed-effects model) before claiming consistent improvement.
- [§3.2, Eq. (7); Appendix D.2] The fitness function is accuracy on a 600-question validation set, whose binomial standard error is about 2.0 percentage points at p≈0.5. This is larger than each of the reported average gains (0.90, 0.75, 0.58). Furthermore, Appendix D.2 shows that the global scale and drop rate are selected by grid search on this same validation set, and CMA-ES then optimizes against the same set. With no separate validation split or nested cross-validation, the reported test improvements may partly reflect overfitting to validation noise rather than a genuine advantage. Please add an independent validation set for model selection, or show that the chosen configuration generalizes across multiple seeds and validation splits.
- [Appendix E.2, Table 9] The wall-clock efficiency claim is based on a partly extrapolated estimate: the CMA-ES stage is listed as '50 gens, extrapolated,' and the cumulative (non-parallelized) total of 7.39 h is 74% longer than the GRPO+LoRA baseline's 4.25 h. Only the parallelized total (3.23 h) supports the advertised 24% reduction, and that total inherits the extrapolated CMA-ES figure. Please report measured end-to-end times for all stages and clarify how the extrapolation was computed; otherwise the efficiency comparison is not verifiable.
- [Appendix C.1, Proposition 2] Proposition 2 assumes the projection of the true descent direction g* onto the direction-pool span has cosine c>0, but the paper does not directly measure or otherwise verify this alignment for the GRPO-derived directions; it is asserted that 'GRPO-derived task vectors are intended to provide this alignment.' The random-direction ablation (Table 4) shows that when alignment fails the method collapses, so this condition is load-bearing. Please provide a direct diagnostic of task alignment, for example the cosine between the aggregate GRPO update and the direction-pool span, or an ablation that varies the number of GRPO steps and reports the resulting alignment and end performance.
minor comments (6)
- [Abstract] The abstract states an improvement of '1%' while the average margins in Tables 1 and 2 are 0.90, 0.75, and 0.58 points; please report exact margins or use a more precise rounding convention.
- [Figure 2 caption and Appendix C.2] The caption says raw data are provided in Appendix C.2, but Appendix C.2 reports only aggregate cosine-similarity and norm tables (Tables 5 and 6), not the per-step raw data referenced; please either add the raw data or adjust the caption.
- [Lemma 2, §2.2 and Appendix C.1] Lemma 2's statement omits the cross-term uncorrelatedness assumption E⟨r_t, r_s⟩≈0 that appears in the proof; the lemma should state this assumption explicitly in the main text.
- [Tables 1 and 2] The benchmark name 'SV AMP' should be spelled 'SVAMP' to match the standard reference (Patel et al., 2021).
- [Appendix E.2, Table 9] The 'Cumulative' row in Table 9 sums per-direction GPU time and may be misleading without specifying that it is a single-GPU serial equivalent; please label it explicitly.
- [Appendix F.2] GSM8K-Aug and DeepScaler datasets are referenced via URLs but without formal bibliographic entries; please add proper references.
Circularity Check
No significant circularity: the derivation chain is self-contained and the central claim is an empirical comparison, not a construction-level reduction.
full rationale
The paper's derivation chain is a constructive pipeline: short GRPO runs define LoRA task vectors, CMA-ES searches layer-wise DARE-TIES coefficients, and the decoded merged model is evaluated on held-out test sets. No load-bearing step reduces, by the paper's own equations, to its inputs. Lemmas 1 and 2 are standard concentration and random-walk facts with explicit assumptions (log G = o(d), mean-zero orthogonal components) and are proved locally rather than imported from the authors' prior work. Proposition 2 is explicitly conditional: it formalizes the benefit of alignment c > 0 but does not assert that GRPO deltas satisfy it; the paper tests this alignment empirically through the random-direction ablation (Table 4), so it is not a self-definitional assumption. The global scale and drop rate are selected on a 600-question validation set and then applied to test benchmarks; this is ordinary hyperparameter selection, not a fitted parameter renamed as a prediction. Self-citations (Soft-GRPO; Zheng and Lee 2025 and 2026) appear only as references to GRPO-family methods in related work and do not carry the main argument. The only substantive concern is statistical: the reported 1% gains are close to measurement noise and the multi-seed appendix shows a gap that is not clearly significant. That is a correctness or robustness issue, not circularity, and therefore does not raise the circularity score.
Assumptions & free parameters
free parameters (6)
- Global merge scale (gamma = scale x N) =
2.7 (Qwen2.5-0.5B), 2.6 (Qwen2.5-1.5B), 2.9 (DeepSeek-R1-Distill-1.5B)
- DARE drop rate p =
0.9 (0.5B), 0.7 (1.5B), 0.5 (DeepSeek)
- Number of directions N =
10 (Qwen2.5), 7 (DeepSeek)
- GRPO steps per direction =
7 (4 in ablation)
- LoRA rank and scale =
r=32, alpha=64 (alpha/r = 2.0)
- CMA-ES initial step size and population size =
sigma_z = 0.3; G = 4 + floor(3 ln(960)) ≈ 24
assumptions (5)
- standard math Concentration of measure on the sphere: for a uniformly sampled unit vector u in R^d, Pr(|<u,e1>| >= tau) <= 2 exp(-d tau^2 / 2)
- ad hoc to paper Orthogonal components of ES updates are mean-zero and uncorrelated across iterations, E<r_t, r_s> ≈ 0 for t != s
- domain assumption Short GRPO runs on difficulty-grouped subsets produce LoRA deltas whose span S has positive cosine alignment c > 0 with the true descent direction g*
- domain assumption Validation accuracy on a fixed 600-question set is a reliable fitness signal for CMA-ES and does not overfit the merging coefficients to the validation data
- domain assumption GRPO+LoRA is a fairly tuned representative of gradient-based RLVR fine-tuning
Cite this review
Pith. "Pith review of Hyper-ES: Effective Evolution Strategies for LLM Reasoning via Descent Direction Merging." pith.science (2026). https://pith.science/paper/3V2WUZTW
@misc{pith2026260805541,
author = {Pith},
title = {Pith review of: Hyper-ES: Effective Evolution Strategies for LLM Reasoning via Descent Direction Merging},
year = {2026},
howpublished = {\url{https://pith.science/paper/3V2WUZTW}},
note = {Machine review of arXiv:2608.05541}
}
read the original abstract
Evolution Strategy (ES) is a promising alternative to gradient-based fine-tuning for resource-constrained Large Language Model (LLM) reasoning. However, directly applying ES to billion-parameter LLMs is highly ineffective. In such high-dimensional parameter spaces, most random perturbations are nearly orthogonal to useful update directions, leading to unstable optimization. We propose Hyper-ES, a subspace-based ES framework that avoids the weakness of ES in full-parameter search while exploiting its strength in low-dimensional optimization. Instead of asking ES to discover useful directions from random perturbations in the LLM parameter space, Hyper-ES first performs a small number of inexpensive gradient-based fine-tuning runs to obtain descent directions. Although each direction may provide only a limited improvement on its own, their span forms a compact adaptation subspace that captures useful reasoning updates. Hyper-ES then applies CMA-ES to optimize layer-wise DARE-TIES merging coefficients within this subspace, allowing ES to search over combinations of meaningful descent directions rather than over arbitrary full-model perturbations. We evaluate Hyper-ES on three Qwen2.5-Instruct and DeepSeek-R1-Distill backbones across six mathematical reasoning datasets. Results show that Hyper-ES consistently outperforms GRPO-LoRA by 1% while requiring 10% fewer space-consuming gradient updates. Code at https://github.com/kuangrepi/Hyper-ES.
Figures
Reference graph
Works this paper leans on
-
[1]
arXiv preprint arXiv:2212.04089 , year=
Editing models with task arithmetic , author=. arXiv preprint arXiv:2212.04089 , year=
-
[2]
arXiv preprint arXiv:2601.21598 , year=
Beyond Imitation: Reinforcement Learning for Active Latent Planning , author=. arXiv preprint arXiv:2601.21598 , year=
-
[3]
arXiv preprint arXiv:2511.06411 , year=
Soft-grpo: Surpassing discrete-token llm reinforcement learning via gumbel-reparameterized soft-thinking policy optimization , author=. arXiv preprint arXiv:2511.06411 , year=
-
[4]
Advances in neural information processing systems , volume=
Ties-merging: Resolving interference when merging models , author=. Advances in neural information processing systems , volume=
-
[5]
arXiv preprint arXiv:2503.20783 , year=
Understanding r1-zero-like training: A critical perspective , author=. arXiv preprint arXiv:2503.20783 , year=
-
[6]
arXiv preprint arXiv:2510.10603 , year=
EA4LLM: A Gradient-Free Approach to Large Language Model Optimization via Evolutionary Algorithms , author=. arXiv preprint arXiv:2510.10603 , year=
-
[7]
arXiv preprint arXiv:2603.12228 , year=
Neural thickets: Diverse task experts are dense around pretrained weights , author=. arXiv preprint arXiv:2603.12228 , year=
-
[8]
Reasoning Resides in Layers: Restoring Temporal Reasoning in Video-Language Models with Layer-Selective Merging , author=. arXiv preprint arXiv:2604.11399 , year=
Show all 61 references
-
[9]
arXiv preprint arXiv:2502.17419 , year=
From system 1 to system 2: A survey of reasoning large language models , author=. arXiv preprint arXiv:2502.17419 , year=
-
[10]
Forty-first International Conference on Machine Learning , year=
Language models are super mario: Absorbing abilities from homologous models as a free lunch , author=. Forty-first International Conference on Machine Learning , year=
-
[11]
Nature Machine Intelligence , volume=
Evolutionary optimization of model merging recipes , author=. Nature Machine Intelligence , volume=. 2025 , publisher=
2025
-
[12]
arXiv preprint arXiv:2509.24372 , year=
Evolution strategies at scale: Llm fine-tuning beyond reinforcement learning , author=. arXiv preprint arXiv:2509.24372 , year=
-
[13]
arXiv preprint arXiv:2402.03300 , year=
Deepseekmath: Pushing the limits of mathematical reasoning in open language models , author=. arXiv preprint arXiv:2402.03300 , year=
-
[14]
, author=
Lora: Low-rank adaptation of large language models. , author=. Iclr , volume=
-
[15]
arXiv preprint arXiv:2110.14168 , year=
Training verifiers to solve math word problems , author=. arXiv preprint arXiv:2110.14168 , year=
-
[16]
2025 , eprint=
Qwen2.5 Technical Report , author=. 2025 , eprint=
2025
-
[17]
Kydlíček, Hynek , license =
-
[18]
arXiv preprint arXiv:2604.01499 , year=
Matching Accuracy, Different Geometry: Evolution Strategies vs GRPO in LLM Post-Training , author=. arXiv preprint arXiv:2604.01499 , year=
-
[19]
arXiv preprint arXiv:2501.12948 , year=
Deepseek-r1: Incentivizing reasoning capability in llms via reinforcement learning , author=. arXiv preprint arXiv:2501.12948 , year=
-
[20]
Notion Blog , volume=
Deepscaler: Surpassing o1-preview with a 1.5 b model by scaling rl , author=. Notion Blog , volume=
-
[21]
arXiv preprint arXiv:2508.08221 , year=
Part i: Tricks or traps? a deep dive into rl for llm reasoning , author=. arXiv preprint arXiv:2508.08221 , year=
-
[22]
URL https://arxiv
Dapo: An open-source llm reinforcement learning system at scale, 2025 , author=. URL https://arxiv. org/abs/2503.14476 , volume=
2025 arXiv
-
[23]
arXiv preprint arXiv:2602.02710 , year=
Maximum Likelihood Reinforcement Learning , author=. arXiv preprint arXiv:2602.02710 , year=
-
[24]
arXiv preprint arXiv:2512.23165 , year=
Evaluating Parameter Efficient Methods for RLVR , author=. arXiv preprint arXiv:2512.23165 , year=
-
[25]
arXiv preprint arXiv:2505.05464 , year=
Bring reason to vision: Understanding perception and reasoning through model merging , author=. arXiv preprint arXiv:2505.05464 , year=
-
[26]
arXiv preprint arXiv:2510.08987 , year=
Towards Efficient Multimodal Unified Reasoning Model via Model Merging , author=. arXiv preprint arXiv:2510.08987 , year=
-
[27]
arXiv preprint arXiv:2601.20861 , year=
Evolutionary Strategies lead to Catastrophic Forgetting in LLMs , author=. arXiv preprint arXiv:2601.20861 , year=
-
[28]
arXiv preprint arXiv:1703.03864 , year=
Evolution strategies as a scalable alternative to reinforcement learning , author=. arXiv preprint arXiv:1703.03864 , year=
-
[29]
arXiv preprint arXiv:2602.01003 , year=
ESSAM: A Novel Competitive Evolution Strategies Approach to Reinforcement Learning for Memory Efficient LLMs Fine-Tuning , author=. arXiv preprint arXiv:2602.01003 , year=
-
[30]
arXiv preprint arXiv:2511.16652 , year=
Evolution strategies at the hyperscale , author=. arXiv preprint arXiv:2511.16652 , year=
-
[31]
arXiv preprint arXiv:2408.01800 , year=
Minicpm-v: A gpt-4v level mllm on your phone , author=. arXiv preprint arXiv:2408.01800 , year=
-
[32]
Advances in neural information processing systems , volume=
Chain-of-thought prompting elicits reasoning in large language models , author=. Advances in neural information processing systems , volume=
-
[33]
arXiv preprint arXiv:2503.23077 , year=
Efficient inference for large reasoning models: A survey , author=. arXiv preprint arXiv:2503.23077 , year=
-
[34]
arXiv preprint arXiv:2505.12348 , year=
Reasoning-CV: Fine-tuning Powerful Reasoning LLMs for Knowledge-Assisted Claim Verification , author=. arXiv preprint arXiv:2505.12348 , year=
-
[35]
arXiv preprint arXiv:2507.01079 , year=
MobileRAG: A Fast, Memory-Efficient, and Energy-Efficient Method for On-Device RAG , author=. arXiv preprint arXiv:2507.01079 , year=
-
[36]
Proceedings of the 26th annual international conference on machine learning , pages=
Curriculum learning , author=. Proceedings of the 26th annual international conference on machine learning , pages=
-
[37]
Proceedings of the 62nd annual meeting of the association for computational linguistics (volume 3: system demonstrations) , pages=
Llamafactory: Unified efficient fine-tuning of 100+ language models , author=. Proceedings of the 62nd annual meeting of the association for computational linguistics (volume 3: system demonstrations) , pages=
-
[38]
International Conference on Learning Representations , volume=
Let's verify step by step , author=. International Conference on Learning Representations , volume=
-
[39]
Proceedings of the 2021 conference of the North American chapter of the association for computational linguistics: human language technologies , pages=
Are NLP models really able to solve simple math word problems? , author=. Proceedings of the 2021 conference of the North American chapter of the association for computational linguistics: human language technologies , pages=
2021
-
[40]
Proceedings of the 2015 conference on empirical methods in natural language processing , pages=
Solving general arithmetic word problems , author=. Proceedings of the 2015 conference on empirical methods in natural language processing , pages=
2015
-
[41]
International conference on machine learning , pages=
Pal: Program-aided language models , author=. International conference on machine learning , pages=. 2023 , organization=
2023
-
[42]
Evolutionary computation , volume=
Completely derandomized self-adaptation in evolution strategies , author=. Evolutionary computation , volume=. 2001 , publisher=
2001
-
[43]
arXiv preprint arXiv:2409.19256 , year=
Hybridflow: A flexible and e! cient rlhf framework , author=. arXiv preprint arXiv:2409.19256 , year=
-
[44]
arXiv preprint arXiv:2512.05760 , year=
Evolutionary System 2 Reasoning: An Empirical Proof , author=. arXiv preprint arXiv:2512.05760 , year=
-
[45]
arXiv preprint arXiv:2507.04453 , year=
ESSA: Evolutionary Strategies for Scalable Alignment , author=. arXiv preprint arXiv:2507.04453 , year=
-
[46]
ACM Computing Surveys , volume=
Model merging in llms, mllms, and beyond: Methods, theories, applications, and opportunities , author=. ACM Computing Surveys , volume=. 2026 , publisher=
2026
-
[47]
arXiv preprint arXiv:2307.13269 , year=
Lorahub: Efficient cross-task generalization via dynamic lora composition , author=. arXiv preprint arXiv:2307.13269 , year=
-
[48]
arXiv preprint arXiv:2405.14838 , year=
From explicit cot to implicit cot: Learning to internalize cot step by step , author=. arXiv preprint arXiv:2405.14838 , year=
-
[49]
arXiv preprint arXiv:2503.01874 , year=
Cabs: Conflict-aware and balanced sparsification for enhancing model merging , author=. arXiv preprint arXiv:2503.01874 , year=
-
[50]
arXiv preprint arXiv:2503.08099 , year=
Whoever started the interference should end it: Guiding data-free model merging via task vectors , author=. arXiv preprint arXiv:2503.08099 , year=
-
[51]
arXiv preprint arXiv:2501.08603 , year=
Monte carlo tree search for comprehensive exploration in llm-based automatic heuristic design , author=. arXiv preprint arXiv:2501.08603 , year=
-
[52]
Advances in Neural Information Processing Systems , volume=
UDC: A unified neural divide-and-conquer framework for large-scale combinatorial optimization problems , author=. Advances in Neural Information Processing Systems , volume=
-
[53]
arXiv preprint arXiv:2412.00346 , year=
CaDA: Cross-problem routing solver with constraint-aware dual-attention , author=. arXiv preprint arXiv:2412.00346 , year=
-
[54]
arXiv preprint arXiv:2405.17272 , year=
DPN: Decoupling partition and navigation for neural solvers of min-max vehicle routing problems , author=. arXiv preprint arXiv:2405.17272 , year=
-
[55]
Proceedings of the AAAI Conference on Artificial Intelligence , volume=
Learning encodings for constructive neural combinatorial optimization needs to regret , author=. Proceedings of the AAAI Conference on Artificial Intelligence , volume=
-
[56]
IEEE Transactions on Intelligent Transportation Systems , volume=
Pareto improver: Learning improvement heuristics for multi-objective route planning , author=. IEEE Transactions on Intelligent Transportation Systems , volume=. 2023 , publisher=
2023
-
[57]
Advances in Neural Information Processing Systems , volume=
Rethinking neural combinatorial optimization for vehicle routing problems with different constraint tightness degrees , author=. Advances in Neural Information Processing Systems , volume=
-
[58]
2026 , eprint=
One Token per Multimodal Evidence: Latent Memory for Resource-Constrained QA , author=. 2026 , eprint=
2026
-
[59]
2026 , eprint=
APEX: Autonomous Policy Exploration for Self-Evolving LLM Agents , author=. 2026 , eprint=
2026
-
[60]
arXiv preprint arXiv:2108.07732 , year=
Program synthesis with large language models , author=. arXiv preprint arXiv:2108.07732 , year=
-
[61]
arXiv preprint arXiv:2107.03374 , year=
Evaluating large language models trained on code , author=. arXiv preprint arXiv:2107.03374 , year=
Reviewed August 8, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.