proomt

Search

Search posts, papers, and topics

All posts

Hacker News front pageMichael Noukhovitch11 min readadvanced

Learning to solve hard problems in RL for LLMs by never giving up

Summary

The post introduces the *Matthew Effect* in RL‑fine‑tuning of LLMs—performance gains concentrate on tasks the model already solves— and proposes *Never Give Up* (NGU), an adaptive sampling scheme that uses a small k for easy prompts and retries hard prompts with a high‑probability “never give up” loop. Experiments on math (AIME, GSM8k), code (Manufactoria), and larger‑scale setups (DeepScaler) sh…

  • RL fine‑tuning of LLMs exhibits a *Matthew Effect*: improvements scale with the model’s initial competence, leaving hard problems largely untouched.
  • Increasing the number of sampled completions (k) helps early on but later wastes compute on easy prompts that receive spurious incorrect completions.
  • Never Give Up (NGU) adaptively samples: use a small k, filter solved prompts quickly, and with probability p re‑sample unsolved prompts, effectively creating a geometric‑distributed number of attempts.
  • NGU with k=4 and p=0.9 matches or exceeds the performance of any fixed‑k GRPO baseline on GSM8k Platinum, especially on the hardest difficulty bucket.

RL‑based alignment and capability‑boosting for LLMs is increasingly used in production systems. If fine‑tuning only amplifies existing strengths, models will fail on the hardest, most safety‑critical tasks. NGU offers a simple, compute‑efficient way to redistribute training signal toward those hard…

7/10

Related reading

  1. Prompts aren’t Real

    The talk argues that prompt engineering is a dead‑end and proposes building large evaluation/optimization pipelines (pass^k testing, adversarial scenario generation, automated prompt optimization) to make LLM agents reliable. It describes a workflow: generate tests, run them with/without a new “skill”, feed results to a genetic optimizer that mutates prompts, validate on hold‑out tests, and itera…

    Hacker News front pageevaluation.club24 mintalkHN11757
  2. Designer-RSI: Evolving Procedural Memory from User Traffic for Agentic Graphic Design

    The paper introduces Designer‑RSI, a continual‑adaptation system that couples a frozen design‑software‑controlling LLM with an external procedural memory of natural‑language design skills. Over five adaptation rounds on real user briefs, the memory grows from 76 to 139 procedures and lifts execution success from 72.7% to 99.3%, showing that skill accumulation and selective replay can dramatically…

    Hugging Face Daily Papersarxiv.org1 minpaper
  3. The Router Within: Eliciting Native Skill Routing from a Frozen LLM

    The paper introduces Gavel, a method that extracts a frozen LLM's internal routing signal via two trained linear maps, eliminating the need to embed skill descriptions in the prompt. Experiments on Qwen3‑32B show up to 13.4‑point improvements on task benchmarks and higher skill‑use accuracy compared to larger retrieval‑based systems.

    Hugging Face Daily Papersarxiv.org1 minpaper
  4. Online Learning with LLM Experts from Limited Feedback

    The paper models prompt routing to multiple LLM experts as a bandit problem with limited feedback and proposes algorithms that achieve sublinear regret in both full‑information and bandit settings. Experiments demonstrate that the methods learn effective routing strategies across diverse LLMs using only a small feedback budget.

    Hugging Face Daily Papersarxiv.org2 minpaper