RLHF and RLVR pipelines compress model diversity. Every reward step nudges outputs toward the highest-probability correct answer, eroding distribution breadth until the model is reliable but repetitive. That works for question-answering benchmarks. For downstream RL training that depends on varied rollouts to generate useful reward signal, it's a direct tax. For tasks where creative or exploratory generation matters, it quietly degrades performance.

A new paper from Ananya Sahu, Mohit Bansal, and Elias Stengel-Eskin (published August 7) introduces CreativeInstruct: a single-model, instruction-tuning method to recover lost diversity without surrendering quality gains from post-training. The mechanism is a learnable control token—[StartCreativity]—injected during supervised fine-tuning. The model learns that this token predicts creative, base-model-like generation. At inference time, whether to activate it is a choice, not a sampling parameter.

CreativeInstruct mechanism: a single SFT stage teaches the model that [StartCreativity] predicts creative, base-model-like generation; no inference overhead at deploy time.
FIG. 02 CreativeInstruct mechanism: a single SFT stage teaches the model that [StartCreativity] predicts creative, base-model-like generation; no inference overhead at deploy time. — Sahu, Bansal & Stengel-Eskin, 2025 (arXiv:2608.07460)

No inference overhead. Multi-model ensembles and distillation have been the workaround for diversity collapse, but they multiply deployment cost and complicate serving. CreativeInstruct runs as a single checkpoint. On narrative generation benchmarks, it matches or exceeds the diversity of multi-model and distilled baselines—confirmed in both automatic metrics and human evaluation.

ApproachModel CheckpointsInference OverheadDiversity vs BaselinesRequires Re-tuning
CreativeInstructSingle checkpointNoneMatches or exceeds multi-model & distilled baselinesYes — SFT stage on creative/non-creative pairs
Multi-model EnsembleMultiple checkpointsMultiplied (N× serving cost)HighNo (uses existing checkpoints)
DistillationSingle checkpoint (post-distillation)NoneLower than CreativeInstructYes — distillation training run
FIG. 03 Diversity-recovery approaches compared on deployment cost, inference overhead, and narrative diversity outcome — Sahu, Bansal & Stengel-Eskin, 2025 (arXiv:2608.07460)

The paper also proposes a new diversity metric based on graph edit distance over narrative structure. Existing lexical and semantic measures (n-gram overlap, cosine similarity) miss structural variation: two stories with different plots but similar vocabulary score as less diverse than they are. Graph-edit-distance metrics operate on discourse structure and catch narrative variation those measures skip.

Human annotators rated CreativeInstruct outputs as more creative than standard post-trained baselines in 70.3% of cases. This is notable because it reflects open-ended generations, not synthetic benchmarks, and the gain came without quality loss on the post-trained model's core strengths.

The RL finding is most actionable. When GRPO (group relative policy optimization, widely used in reasoning model training) was applied to a CreativeInstruct checkpoint rather than a standard post-trained one, math performance improved 4% on AMC and 5% on MATH. The mechanism: more diverse initial rollouts generate richer reward signal, letting GRPO find better policies before collapse. The starting point matters.

GRPO math performance gain (%) when fine-tuning starts from a CreativeInstruct checkpoint vs a standard post-trained checkpoint
FIG. 04 GRPO math performance gain (%) when fine-tuning starts from a CreativeInstruct checkpoint vs a standard post-trained checkpoint — Sahu, Bansal & Stengel-Eskin, 2025 (arXiv:2608.07460)

What's hard: this requires a supervised fine-tuning stage on labeled creative/non-creative pairs to teach the model what [StartCreativity] predicts. Teams training post-training from scratch can insert this; teams with existing distilled or RLHF'd checkpoints must weigh whether the quality-diversity tradeoff justifies re-tuning. The paper reports no experiments at very large scales, and it's unclear whether the 4–5% RL gains persist as model capacity and training compute grow.

For teams building reasoning agents where RL is part of the loop: diversity collapse from standard post-training isn't a background inefficiency—it's a ceiling on what GRPO or similar can achieve. CreativeInstruct provides a documented path to raise that ceiling at no inference cost.