arxiv.org web signal

SERPO self-tunes LLMs on open-ended tasks without labels

TL;DR

  • SERPO is a test-time reinforcement learning method that lets language models improve on open-ended questions without labeled data or an external judge.
  • On HealthBench it lifted base models by up to 20.63 points and on ResearchQA by up to 20.31 points, with an 8.06-point six-benchmark macro-average gain.
  • The method co-evolves a Good-Normal-Bad archive of the model's own rollouts, query-specific rubrics, and the policy itself in a closed loop.

A new arXiv paper caught my eye because it targets one of the more stubborn problems in test-time reinforcement learning: how do you let a model self-improve on questions that don't have a single right answer? Voting-based tricks work when everyone can converge on the same number, but they fall apart the moment you're asking about health advice, research synthesis, or anything genuinely open-ended.

The proposal, SERPO, replaces answer voting with a three-way loop. The model's own rollouts get sorted into Good-Normal-Bad archives, a set of query-specific rubrics evolves to distinguish between those archives, a probabilistic scoring step turns the rubric verdicts into reward signals, and those signals update the policy, which then generates fresh rollouts and refreshes both the archives and the rubrics. No external reward model, no stronger judge.

The headline numbers are the part that will get attention. Across two model configurations, two in-domain benchmarks, and four out-of-distribution benchmarks, the authors report gains of up to 20.63 points on HealthBench and 20.31 points on ResearchQA over the corresponding base models, with a macro-average lift of up to 8.06 points across all six. They also claim OOD transfer and continued cross-benchmark evolution, meaning the loop keeps improving as it moves between tasks.

The honest caveat is that this is an unreviewed preprint, the gains are measured against base models rather than strong RLHF'd competitors, and the abstract only names two of its six benchmarks. Self-generated rewards on health topics also carry a specific risk, since a model grading itself using rubrics it wrote can drift toward answers it finds easy to satisfy rather than answers a clinician would trust. What the reporting doesn't give you is which base models were used, which four OOD benchmarks were tested, or how SERPO stacks up against a pipeline that uses an external judge.

Still, the direction is what matters. If test-time self-evolution on open-ended tasks holds up under replication, teams without access to a frontier judge model gain a credible path to improve domain assistants at inference, and the assumption that you always need a stronger model to grade a weaker one starts to look less firm.

Shared on Bluesky by 2 AI experts