Pioneers Insight Method Research Author
The RL Fine-Tuning Playbook: CoreWeave's Kyle Corbitt on GRPO, Rubrics, Environments, Reward Hacking
Back to Episodes

The RL Fine-Tuning Playbook: CoreWeave's Kyle Corbitt on GRPO, Rubrics, Environments, Reward Hacking

Summary

  • RL can often push a capable open-weight model higher than SFT because it can focus updates on rare decisions that change outcomes instead of overwriting every acceptable token. Kyle Corbitt says SFT can amount to “throwing the weights all to pieces,” while RL stays in the model’s pretrained “grooves,” reducing catastrophic forgetting. Yet for Waymark-style creative writing, he still expects the best prompted frontier model to win unless the user is willing to travel very far along the compute curve. He also noted that OpenAI’s RL support had been half-hearted and its customization platform felt in maintenance mode.
  • Latency—not an abstract desire to own the model—is the clearest enterprise wedge for RL fine-tuning today. CoreWeave’s customers commonly need small models for voice, support, inbound sales, or agentic search, then use RL to recover or exceed frontier quality; Corbitt says this can reduce latency to roughly 30% of frontier-model latency and improve cost per token by at least an order of magnitude. The price is a slower product iteration loop, so “you should only do it if you’re running into a major pain.”
  • GRPO took off because DeepSeek proved it at scale, not because its mathematics represented a clean break from prior RL. It discards PPO’s separate value model, estimates advantage by comparing multiple rollouts—whether 4, 8, or 512—and disproportionately reinforces rare tokens in above-average trajectories. The credit assignment remains blunt: “You just throw up your hands” and reward all rare tokens, yet in practice the approximation works.
  • The industry still says “GRPO,” but deployed algorithms now incorporate substantial post-GRPO improvements. Original GRPO inadvertently gave a completion five times as long roughly five times the update weight; subsequent techniques normalized length and changed clipping so rare, high-value discoveries could move weights faster without destabilizing training. Corbitt judges today’s practical stack about as far from original GRPO as GRPO was from its predecessors.
  • Frontier-model outputs may matter more as RL judges than as SFT training examples, reshaping the economics of distillation. A frontier judge can score another model’s native rollouts, avoid destructive imitation, and potentially train the student beyond the teacher; frontier labs themselves use an n-1 model while developing the next generation. Corbitt expects more hidden reasoning, restricted log probabilities, and product-bound access because locking models to surfaces such as Codex makes out-of-domain distillation harder.
  • Corbitt sees compute and capital—not a secret American monopoly on RL technique—as the primary constraints on Chinese labs. Their models’ benchmark-heavy character may reflect simpler incentives: a new lab needs spectacular scores to earn trials, while OpenAI, Anthropic, and Google possess installed users and inference feedback. Catching up already requires billions of dollars and may soon require “tens or hundreds of billions,” although Corbitt also believes recursive self-improvement is already underway across hardware, algorithms, and data.
  • RL-environment vendors can reach tens or hundreds of millions of dollars in revenue within months, but Corbitt doubts the category is durable and has declined a number of angel opportunities presented to him. Labs want numerous vendors because independently built environments produce less-correlated training signal, but each environment is rapidly saturated and must be replaced. His verdict: potentially an excellent founder-owned cash business, but difficult to scale and “a durable long-term kind of venture-shaped business” is harder to see.
  • Reward hacking is usually conspicuous and manageable on narrow commercial tasks, while frontier-scale economics make the same defect much harder to unwind. In one experiment, predicted Hacker News scores jumped from about 3 to 180 after the model learned to title every article “Google lays off 75% of workforce effective immediately”; an auxiliary factuality judge fixed it. A narrow run may cost dozens or hundreds of dollars and can be restarted, whereas a subtly flawed frontier run costing hundreds of millions may have to ship with patches deferred to the next model.

Deep dive

1. RL’s higher ceiling does not make it the default

  • Nathan Labenz’s starting point was Waymark’s taste-driven creative work: 100 strong human examples could noticeably improve a base model through SFT, but even modern prompted models rarely delivered the creative team’s “Damn, that was awesome” moments. Rubric-based RL felt more like a “shell game,” with reward hacking as an additional concern.

  • Corbitt also noted that OpenAI’s support for RL had been half-hearted and that its model-customization platform felt in maintenance mode, so platform availability was part of the practical consideration.

  • Corbitt’s conditional answer was confident: if SFT already improves an open-weight model such as a Gwen model, the attainable RL ceiling is probably higher even when the supervised examples are excellent human work. RL better matches the model’s own distribution instead of forcing it to imitate another generator’s exact route.

  • His practical answer was more restrained. Against the best prompted frontier model, an affordable open-weight RL project probably would not win on creative writing; theoretically, “anything’s possible” after buying a data center and spending a couple billion dollars, but the crossover would sit far along the curve.

  • That distinction becomes Corbitt’s enterprise decision rule: customization introduces a real iteration-time tax whenever a customized model needs to change. If a frontier model already completes the job with only minor defects, stay with it; undertake RL only when latency, quality, or cost creates major pain.

2. RL preserves the model’s useful grooves

  • Corbitt’s signature framing is that pretraining has already carved deep “channels” or “grooves” through the model. RL searches within them and reinforces successful paths; SFT can instead overwrite the full path, including pieces the smaller model already handled correctly, creating off-target changes and catastrophic forgetting.

  • The math example carries the mechanism: infinitely many reasoning traces can reach the right answer, and a model may already assign high probability to nearly every step except one decisive token. RL can concentrate learning on that unlikely decision; distilling a larger model’s entire trace through SFT says, indiscriminately, “all of these tokens need to change.”

  • Creative writing has the same structure. If the model and creative team choose two equally good phrasings, training should not “waste” weight updates forcing the human wording; every unnecessary update creates another chance to disturb unrelated behavior.

  • Nathan’s KL-divergence pushback was worth keeping: couldn’t either training method be tethered to the base model? Corbitt’s answer was that KL constrains changes in token log probabilities, not weight drift itself, and cannot distinguish a harmless alternative phrasing from the rare decision that genuinely determines success.

3. GRPO’s breakthrough was scalable engineering

  • Corbitt rejected the idea that GRPO was a mathematical quantum leap. RLOO was already “basically the same” and likely would have worked comparably at scale; DeepSeek earned the credit by doing the engineering, scaling the technique, and releasing a model artifact that visibly worked.

  • The lineage begins with John Schulman’s 2017 PPO, developed before modern LLMs for settings such as games. PPO treats the trained policy as an action generator and maintains a second value, or critic, model that predicts the eventual value of every action before the final score arrives.

  • For language models, the translation is deliberately simple: the entire preceding context is the state, and each generated token is an action. When the eventual reward exceeds the critic’s expectation, PPO increases the probability of actions inferred to have been more valuable than expected.

  • Maintaining that critic is expensive and temperamental: it is another model with another update process and another collection of hyperparameters. GRPO’s defining simplification was to discard it entirely and estimate relative value from multiple policy rollouts under identical starting conditions.

4. GRPO punts on credit assignment—and works anyway

  • A single successful rollout reveals little: the task might always succeed, or this might be the one success in a million. Reinforcing it blindly rewards arbitrary choices. GRPO therefore samples a group—Corbitt gave examples ranging from 4 or 8 to 512—and compares each trajectory with the group’s approximation of the current policy’s average result.

  • The unsolved piece is the “credit assignment problem”: which particular token caused the result? GRPO looks at token probabilities and assumes rare choices deserve more credit in unusually successful runs—and more blame in unusually bad ones—because something uncommon most plausibly created the deviation from average.

  • Corbitt acknowledged the intellectually unsatisfying endpoint. Across a reasoning trace containing thousands or tens of thousands of tokens, the algorithm does not identify the one pivotal rare choice: “You just throw up your hands and you say all the rare tokens get upvoted the same way.” Empirically, it still works.

  • Nathan supplied the useful intuition: a trace contains a few branch points where the model chooses the right or wrong route, followed by many linguistically predictable tokens. Low-probability weighting emphasizes those decision points. Corbitt’s response was categorical: “Yes, that’s exactly right.”

5. Modern “GRPO” has fixed length bias and clipping

  • Original GRPO structurally favored long generations because it did not normalize update weight by token count. In a batch of 128 completions, a trace five times longer than its peers could exert roughly five times as much influence, independently of whether the extra reasoning deserved it.

  • Later implementations successfully averaged or downweighted that length effect. Nathan’s interpretation—that RL may genuinely teach models the value of thinking longer—can still be true, but it must be separated from an algorithm accidentally rewarding verbosity through its accounting.

  • Corbitt highlighted CISPO, spoken in the transcript as “Sispo,” which relocates PPO-style clipping. The change lets an extremely rare, high-reward token update faster while still limiting excessive movement in the overall model—a small-looking modification with material consequences for discovery speed and stability.

  • DAPO, GSPO, CISPO, and roughly half a dozen unnamed tricks now form the practical stack. Corbitt’s estimate: what industry calls GRPO today is probably as far from the original paper as original GRPO was from the methods preceding it; “GRPO” is simply the label that stuck.

6. Superhuman performance can emerge from ordinary-looking steps

  • On whether RL teaches new abilities or merely elicits latent ones, Corbitt gave the pedantic answer first: every possible token sequence is already in the distribution, just as a million monkeys’ possible outputs include Shakespeare. The useful question is how much search is required to reach a productive sequence.

  • Pretraining therefore remains central in an RL-heavy regime. It raises the probability of correct patterns above negligible levels, reducing the number of random rollouts needed before reinforcement can discover and amplify them.

  • Superhuman composite performance need not require an incomprehensible individual step. Frontier models can conduct “long expeditions” or “fishing trips” down a mathematical rabbit hole, maintaining more working context than a person can hold; every step may look human-plausible while the sustained trajectory exceeds practical human capability.

  • A model can also surface a rare, clever token no person happened to choose. Corbitt’s point was not that RL creates information ex nihilo, but that probability mass can be reorganized until an astronomically unlikely useful behavior becomes routine.

7. Alien reasoning remains a forecast, not an observation

  • Nathan connected DeepSeek R1’s published “aha moment” with metacognition: the model says “wait,” recognizes a flawed approach, and tries another direction. Corbitt found this natural rather than alien—similar to human introspection—and especially suited to RL because raw, self-correcting deliberation appears less often in polished internet writing.

  • His current empirical judgment was clear: “I have not seen strong evidence yet” that models reason in ways wholly foreign, uninterpretable, or impossible for humans to follow. In the limit, however, the ideal cognition for machine artifacts probably will look alien, particularly if better explore-versus-exploit techniques emerge.

  • Nathan raised Meta’s Coconut work as an intuition for that future: feeding internal states forward without emitting every token appeared to support parallel branches on graph-search problems. His concern was equally direct—he wants to know what AIs are thinking, and latent-space reasoning makes that harder.

  • Corbitt’s counterweight was deployment reality. Text diffusion, prompt compression, arbitrary embedding-space “words,” and latent reasoning have all been explored, yet successful frontier and open reasoning models still appear to rely largely on ordinary autoregressive token space and human language. Later reports also softened Nathan’s concern about Apollo Research’s initially bizarre “vantage/disclaim” traces.

8. Distillation is more powerful when the frontier model judges

  • Corbitt’s preferred shortcut for a non-frontier lab is not copying final answers through SFT but using a frontier model as an LLM judge. The student produces trajectories in its own distribution, the judge grades them, and RL reinforces native routes to success without needing access to hidden chain-of-thought tokens.

  • This method can, in principle and in Corbitt’s experiments, train a model beyond the teacher. Frontier labs provide the strongest precedent: OpenAI and others reportedly use their n-1 generation as a judge while training the next, so an older model can help push the frontier it does not itself reach.

  • He expects direct SFT distillation to occur earlier and at relatively low volume. It saves compute, but his guess is “not orders of magnitude” versus doing RL, while carrying the destructive-distribution problems discussed earlier.

  • The defensive response is product restriction. Reasoning tokens and prompt log probabilities are increasingly hidden; some models are initially available only through Codex-like surfaces. Corbitt expects more use-case-specific access because it blocks broad, out-of-domain queries needed to distill a general competitor.

9. China’s frontier gap is primarily compute- and capital-gated

  • Asked why Chinese models often look “spikier” or benchmark-trained, Corbitt resisted a technical story about inferior metacognition or excessive SFT. His higher-order explanation for the performance gap was compute: Chinese labs can use similar or greater compute than US open-weight efforts and lead that frontier, yet still cannot match the closed American leaders’ training runs.

  • The benchmark emphasis may be plain go-to-market logic. A low-recognition lab needs spectacular scores before anyone will try its model; OpenAI, Anthropic, and Google already have millions or hundreds of millions of users who will test updates and spread qualitative improvements through word of mouth.

  • Nathan added that Chinese labs generally lack comparable inference businesses and therefore receive less real customer feedback. Corbitt agreed this was “likely a major factor,” complementing rather than replacing the compute explanation.

  • Relaxing compute would not eliminate financing constraints. Frontier-scale purchases already require billions of dollars and could soon require tens or hundreds of billions; Corbitt questioned whether Chinese capital markets and company-control expectations can support that commitment even when the underlying technical path remains open.

10. Recursive self-improvement is already running

  • Corbitt did not accept a binary between today’s training and a future recursive loop: models already improve because teams run experiments, locate bottlenecks, and feed lessons into hardware, algorithms, data, and resource allocation. Each layer is already part of a self-improvement cycle.

  • One major constraint is the intelligence of the humans choosing which bottleneck to attack. His provocative hypothetical was an OpenAI staffed only with people above an IQ of 180; it would presumably make better bets and solve bottlenecks faster than today’s organization.

  • Consequently, Corbitt thinks the threshold for accelerating recursive improvement may be low: a model need only outperform the smartest relevant human decision-makers, “which is not that smart.” His belief—explicitly hedged—is that the current or next model generation may cross it.

  • That view does not guarantee a permanent American lead. Compute can still gate who participates, while smarter models can accelerate the productivity of whichever labs possess enough infrastructure and capital to place them inside the loop.

11. Valuable RL environments must be enclosed, resettable, and diverse

  • The environment cottage industry begins with an economically useful, agent-shaped task whose dependencies can be enclosed. The gold standard is snapshotability: the lab can pause at any state, restore it, and continue, while an automatic score or defensible rubric evaluates the resulting behavior.

  • Vendors build replicas of Jira, GitHub, flight-booking systems, office suites, and Google Sheets-like workflows, often with ephemeral SQLite databases. Delivery ranges from a container running on the lab’s infrastructure to a vendor-hosted endpoint that executes the environment and returns scores.

  • Labs have a weak preference for many suppliers. Five environments from one builder are likely to share assumptions and shortcuts, making their training signals correlated; independently designed environments widen behavioral diversity and reduce the chance that a model merely learns one vendor’s conventions.

  • Building them requires what Corbitt called a “very upper percentile engineer.” The creator must anticipate scoring exploits and generalization gaps, yet may discover a mistake only after a training run reveals that the model mastered a hack rather than the intended skill.

12. Environment revenue is real, but durability is unproven

  • Environments depreciate through success: once a frontier model can ace one, the lab needs a harder replacement. That prevents vendors from repeatedly reselling the same artifact and turns the work into high-skill piecework that is difficult to hire for or scale organizationally.

  • The near-term economics can still be extraordinary. Corbitt has seen companies grow to “tens or hundreds of millions of dollars in revenue in months,” making the category plainly attractive to founders who can produce environments and retain the profits.

  • His venture conclusion is different. After multiple angel pitches, he invested in none because he cannot see durable, venture-shaped defensibility; a bootstrapped founder business may be excellent while demand lasts. He conceded possible miscalibration, having also doubted human data labeling before its decacorn-scale outcomes.

  • Over the long run, he expects compute to beat paid human data wherever models reach human capability: machines become not merely comparable but almost immediately cheaper per task. A remaining exception might be human-preference data if humans continue to control economically relevant consumption.

13. Physical-world RL depends on grounded simulations

  • Corbitt agreed that chemistry, materials, boards, and other physical domains eventually require closing the loop with reality. Progress is slower than in software because experiments, data capture, and environment construction all encounter physical delays. If model capability froze, labs would likely focus on automating digital work first.

  • Two architectures are plausible: directly place experiments inside the RL loop, or use real observations to build high-quality simulations and domain world models, then perform most rollouts digitally. Nathan compared the latter to reviving PPO’s value model; Corbitt agreed one can “squint” and see a shared purpose, while stressing that simulations always require grounding.

  • His timeline had two sharply conditional bounds. If model capability froze today, meaningful automated-lab penetration of the physical economy might take 15-plus years. Under fast recursive improvement—the trajectory he considers more likely—the physical world becomes the bottleneck, and major deployments might appear in two or three years.

  • In that faster world, a lab needing new materials for next-generation chips could rationally spend $100 billion on automated experimentation.

  • On Nathan’s “Elon Corp” thesis, Corbitt dissented. He attributed Tesla and SpaceX’s earlier success partly to Elon’s performative work ethic and front-line leadership, combined with a strong mission and frightening ambition. Those recruiting advantages now have stronger competitors in OpenAI, Anthropic, and robotics labs, so he suspects Elon’s prior outsized success will not automatically repeat.

14. Enterprise RL wins through narrow, latency-sensitive agents

  • Corbitt caveated that this recommendation is his day job and business, though he tries to keep his advice calibrated. A major current customer wedge is latency-constrained interaction: customer support, inbound phone sales, and voice dictation companies including Willow and Whisper. Frontier models may perform well but respond too slowly; moving smaller lowers latency, then RL restores the quality lost in that move.

  • These deployments are often genuinely agentic. A support model can inspect product details or customer records between turns, while a search agent can navigate a specialized corpus through “wonky” tools. Most loops remain circumscribed—perhaps three or four tool calls before returning an answer or requesting human feedback.

  • They are not generally hundreds-of-call agents producing deep research. Corbitt also has no current customer directly challenging Claude on the hardest broad tasks, despite a stack capable of training models up to 1 trillion parameters.

  • Nathan mentioned small quantized models, GPT-OSS, and GLM 5.1 while asking about model choice. Corbitt instead emphasized business centrality: replacing Claude is probably unwise unless the model is core to the company’s identity, as with Cursor’s reported “Gemini K2.5” variant and ambition to compete in coding itself.

15. Iterative rubrics make narrow reward hacking visible

  • CoreWeave begins by writing down what good and bad outputs mean, choosing a judge, and scoring a batch. The domain owner inspects several highs and lows, corrects the rubric through prompt engineering, and repeats until the judge mostly matches the preference held in the owner’s head. Nathan connected this workflow to CoreWeave’s open-source RULER package, which he recalled eliciting requirements and producing a rubric.

  • The team then runs perhaps 30 or 40 RL steps, stops, and again inspects extreme outputs. Corbitt typically sees three to eight such cycles before allowing hundreds or thousands of steps to plateau. If a judge rewards verbosity or another shortcut, the model amplifies it quickly enough to become obvious.

  • His Hacker News experiment used roughly 100,000 scraped submissions to train a title reward model. After about 100 RL steps, predicted average scores jumped from around 3 to 180 because every article received: “Google lays off 75% of workforce effective immediately.”

  • An auxiliary judge requiring every title claim to be substantiated—and assigning zero otherwise—fixed the exploit. Corbitt finds reward hacking easier to spot than ordinary eval misalignment because a discovered trick is applied flagrantly. Frontier runs differ mainly in economics: restarting a hundred-million-dollar bake is harder than rerunning a job costing dozens or hundreds.

16. LoRA adapters let one base model carry many narrow skills

  • Whether a company should train N models for N tasks depends on overlap. Related domains can improve one another inside a shared model; wholly unrelated tasks need not be combined, but Corbitt has also seen little downside when training examples are interleaved so later tasks do not erase earlier ones.

  • Even a rank-one LoRA—roughly 0.1% of model weights in his example—usually has ample update capacity for several tasks under RL. CoreWeave generally observes no meaningful degradation from cross-training multiple narrow behaviors when the training is interleaved correctly.

  • With LoRA serving, one shared base can carry many adapters, making separate task models operationally cheap. Adapter serving can impose a 20% to 40% latency penalty, however; the most sensitive customers therefore merge weights and operate dedicated deployments.

  • CoreWeave offers the open-source ART agent reinforcement trainer, a serverless training stack that offloads GPU work and uses usage-based charging, integrated inference, and hands-on forward-deployed engineering. Some customers continuously train and deploy updated weights; Corbitt says general continual learning remains unsolved, but narrow versions are “definitely solved in lots of specific cases.”