Papers
Topics
Authors
Recent
Search
2000 character limit reached

CreativeInstruct: Scalably Teaching LLMs to Balance Quality, Creativity, and Diversity

Published 7 Aug 2026 in cs.CL and cs.AI | (2608.07460v1)

Abstract: While post-training improves the capabilities of LLMs, it generally lowers their output diversity and creativity, negatively impacting tasks that explicitly require creativity (e.g., story generation) as well as those that require it implicitly, e.g., reinforcement learning (RL). We instead propose CreativeInstruct, a scalable instruction-tuning method that teaches LLMs to balance creative, base-model-like generations with the quality of post-trained models, by learning to inject special [StartCreativity] spans that bias generation toward creativity. Furthermore, we introduce a structural diversity metric based on graph edit distance, which captures narrative level variation missed by purely lexical and semantic metrics. On narrative generation, CreativeInstruct matches or exceeds the diversity of both multi-model baselines and distilled variants of their outputs, without sacrificing quality or requiring multiple models at inference time. These results are mirrored in our human evaluation, where we find that annotators rate CreativeInstruct generations as more creative than the post-trained LLMs' generations in 70.3% of cases. We also show the benefits of creative models as a substrate for RL: GRPO applied to a CreativeInstruct checkpoint improves by ~4% on AMC and ~5% points on MATH over the same training applied to the post-trained checkpoint.

Summary

  • The paper introduces span-level creativity tags that distill base-versus-aligned model routing into one model, improving semantic and structural diversity while reducing inference compute by half.
  • CreativeInstruct outperforms instruction-tuning, test-time BACo, and untagged distillation across multiple models, with up to 63% higher structural diversity and 70.3% human preference for creativity.
  • The paper proposes LLM-GED for measuring narrative-structure diversity and shows that CreativeInstruct’s more varied rollouts improve GRPO results on MATH and AMC reasoning benchmarks.

Motivation and problem statement

Post-training improves instruction-following, reasoning, and safety in LLMs, but it systematically reduces output diversity and creativity. This homogeneity persists across model families and scales, and it harms both explicitly creative tasks (e.g., story generation) and implicitly diversity-dependent ones such as reinforcement learning (RL), where diverse rollouts are needed for exploration. Existing remedies that mix base-model and aligned-model outputs at inference time (e.g., BACo) recover diversity but require loading two models, doubling test-time compute, and presuppose access to a released base model — an assumption that fails for checkpoints like Qwen3 32B.

CreativeInstruct addresses this by distilling the routing behavior of a dual-model decoding framework into a single aligned model. The key mechanism is span-level creativity tagging: training data is generated by token-level routing between the base and aligned variants of each model family (using BACo's prob+punc variant, which sends punctuation/formatting tokens to the aligned model and high-entropy tokens to the base model). Contiguous spans produced by the base model are wrapped in special [StartCreativity]/[EndCreativity] tokens, and the aligned model is fine-tuned with LoRA on this tagged corpus. At inference time, the model self-injects the creativity tokens, learning where in a response to switch between base-like diversity and aligned-like quality. The authors note the method is agnostic to the particular routing scheme used for data generation.

Training data is drawn from 4,000 English writing-related prompts from Tülu V3 SFT with three outputs per prompt (12,000 samples), making the approach scalable with general-purpose instruction-tuning data rather than requiring curated creative corpora. For Qwen3 32B, which lacks a public base variant, data generated from Qwen2.5 32B is used, demonstrating cross-family transfer.

The LLM-GED metric

A second contribution is LLM Graph Edit Distance (LLM-GED), a structural diversity metric. An LLM judge converts each story into a canonicalized event graph G=(V,E)G = (V,E) — entities abstracted to Character1, Location1, etc., events labeled from a shared vocabulary, edges capturing agent/affected/causes relations and directed next_event temporal ordering — then estimates pairwise normalized graph edit distances:

nGED(GA,GB)=GED(GA,GB)max(GA,GB)\text{nGED}(G_A, G_B) = \frac{\text{GED}(G_A, G_B)}{\max(|G_A|, |G_B|)}

averaged over all pairs. Validation against a reference ranking of controlled narrative variations (identical stories < lexical shifts < temporal reordering < unrelated stories) shows LLM-GED correlates best among all tested metrics (0.889), exceeding cosine dissimilarity with all-MiniLM embeddings (0.852) and all lexical metrics (Dist-nn, Self-BLEU, Self-ROUGE-L, etc.). A deterministic two-pass pipeline (graph extraction followed by exact branch-and-bound GED) yields statistically equivalent scores (mean difference −0.012, paired t-test p=0.56p = 0.56), supporting the single-pass LLM formulation as a cheaper substitute.

Main results

Evaluations on the Narrative Discourse dataset across five models (LLaMA-3.1 8B, Qwen2.5 7B/32B, Qwen3 8B/32B) compare CreativeInstruct against the Instruct baseline, test-time BACo (which uses twice the compute), a Distill baseline trained on the same BACo-generated corpus without tags, and CrPO for LLaMA-3.1 8B.

Model Method Cos-D (M) ↑ Vendi ↑ LLM-GED ↑ WQRM ↑
LLaMA-3.1 8B Instruct 0.309 2.913 0.366 5.93
BACo 0.255 3.499 0.374 5.73
Distill 0.444 3.975 0.523 5.85
CreativeInstruct 0.458 4.749 0.545 6.65
Qwen2.5 7B Instruct 0.290 2.681 0.442 6.17
BACo 0.348 3.204 0.476 6.47
CreativeInstruct 0.395 4.167 0.523 6.42
Qwen3 8B Instruct 0.399 3.257 0.453 6.56
BACo 0.265 2.974 0.395 6.86
CreativeInstruct 0.369 3.926 0.498 6.90

On LLaMA-3.1 8B, CreativeInstruct yields roughly 48% relative gains in semantic diversity and 63% in structural diversity over the instruct baseline. Notably, despite being distilled from BACo's outputs, CreativeInstruct consistently outperforms BACo at test time (average gains of ~29% semantic and ~28% structural diversity), indicating that learning the routing signal enables generalization beyond imitation of the teacher's per-token decisions while halving inference cost. Against the Distill ablation, CreativeInstruct achieves higher LLM-GED in every setting, and the tags also improve quality: Distill generally underperforms on coherence, fluency, relevance, and WQRM, so the explicit markers help preserve quality during tuning rather than trading it away.

Entity-level repetition is quantified via proper noun uniqueness: CreativeInstruct reaches 37.1% at the prompt-group level versus 26.6% for the strongest baseline (Distill) and 18.1% for Instruct, more than doubling Instruct's uniqueness at both granularities (p<0.001p < 0.001, Mann–Whitney U).

Scaling behavior is favorable: diversity metrics improve monotonically up to 12,000 training samples without plateauing, suggesting further gains from additional data. Data composition matters: a variant trained on in-domain narrative data underperforms one trained on general-purpose Tülu data even at matched sample counts, indicating that diverse training prompts support creative generalization better than domain-matched ones.

Human evaluation

Three annotators performed anonymized pairwise comparisons over 50 prompts (five generations per system). Inter-annotator agreement was high for creativity (Cohen's κ=0.720\kappa = 0.720), moderate for diversity (κ=0.417\kappa = 0.417), and negative for quality (κ=0.167\kappa = -0.167); the authors attribute the quality result to small sample size and exclude human quality judgments accordingly. CreativeInstruct outputs were preferred for creativity in 70.3% of comparisons (significant by two-sided binomial test) and for diversity in 57.4%. Qualitative examples show the instruct baseline repeatedly opening with near-identical phrasing ("I woke up to an eerie silence") across generations, whereas CreativeInstruct varies framing and narrative structure.

Creativity as a substrate for RL

The paper tests whether improved diversity benefits downstream RL by applying identical GRPO training (1,000 steps, 8 rollouts, MATH training split) to Qwen3 8B Instruct and Qwen3 8B CreativeInstruct checkpoints, averaged over three seeds:

Model MATH AMC
Instruct baseline 0.374 0.432
Instruct + RL 0.409 0.438
CreativeInstruct baseline 0.424 0.428
CreativeInstruct + RL 0.459 0.478

Two observations stand out. First, the CreativeInstruct checkpoint alone improves in-domain MATH accuracy (+3.5%) but slightly degrades out-of-domain AMC accuracy relative to the instruct baseline — creative instruction-tuning does not by itself improve math ability. Second, after RL the ordering reverses decisively: CreativeInstruct+RL exceeds Instruct+RL by ~4 points on AMC and ~5 points on MATH, with gains concentrated at higher difficulty levels. The interpretation offered is that diversity improves rollout exploration, providing a better initialization for policy optimization and stronger OOD generalization; this positions creativity as relevant beyond generative writing tasks.

Limitations and open questions

Several caveats bear directly on the results. The Qwen3 32B case is an exception: the Distill baseline beats CreativeInstruct on most automatic diversity metrics there, though CreativeInstruct retains higher LLM-GED — the tag mechanism's advantage may shrink at larger scale or with certain model families. Human evaluation covers only LLaMA-3.1 8B, uses three annotators, and produces unreliable quality agreement, leaving human validation of quality and of other model families unaddressed. The RL experiment is limited to one model size, one algorithm (GRPO), and mathematical reasoning; whether the effect extends to other RL settings or reward structures is not established. The method also inherits dependence on the availability of some base-aligned pair for data generation (mitigated, but not eliminated, by demonstrated cross-family transfer), and the scaling curves have not plateaued, so the ceiling of the approach at larger data volumes remains open. Finally, LLM-GED relies on an LLM judge's internal estimation of edit distances rather than exact computation; its robustness across judge models is validated only against one reference ranking and one deterministic pipeline.

Conclusion

CreativeInstruct converts test-time base/aligned model routing into a learned, self-triggered capability via span-tagged instruction tuning, recovering much of the base model's diversity in a single checkpoint without sacrificing quality. The accompanying LLM-GED metric captures narrative-structural variation that lexical and embedding-based metrics miss. Results across five models show consistent diversity gains over both multi-model decoding and distillation baselines, strong human preference for creativity (70.3%), and improved downstream GRPO performance when used as an RL starting point — evidence that diversity-oriented instruction tuning has value well outside creative writing.

Paper to Video (Beta)

No one has generated a video about this paper yet.

Whiteboard

No one has generated a whiteboard explanation for this paper yet.

Explain it Like I'm 14

1. What is the paper about?

This paper introduces CreativeInstruct, a way to train LLMs to be both:

  • High quality: follow instructions, make sense, and write clearly.
  • Creative and diverse: produce answers and stories that are not all alike.

The researchers argue that training an AI to follow instructions often makes it safer and more useful, but can also make its answers repetitive and predictable. CreativeInstruct tries to solve this problem by teaching one model when to “take a creative path” while still keeping the strengths of an instruction-following model.

2. What questions are the researchers asking?

The paper mainly asks:

  1. Can a LLM become more creative without losing quality?
  2. Can one model learn to switch between ordinary, reliable writing and more unusual, imaginative writing?
  3. How can researchers measure creativity and diversity in stories?
  4. Does having more creative answers also help with other tasks, such as solving math problems through reinforcement learning?

The basic idea is similar to giving a student a helpful choice: sometimes use the most obvious answer, but sometimes try a different idea that may lead to something better.

3. How did the researchers do this?

Creating creative examples

The researchers started with two versions of similar LLMs:

  • A base model, which tends to produce more varied and surprising text.
  • An instruction-tuned model, which is better at following directions and producing polished answers.

They used a system called BACo to combine the two models while generating responses. BACo chooses which model should provide each piece of text.

For example, the instruction-tuned model might be used for punctuation and sentence structure, while the base model might be used for an important story idea or an unusual description.

The researchers then placed special markers around the more creative sections:

1
[StartCreativity] creative section [EndCreativity]

They created 12,000 training examples from 4,000 English writing prompts. The model was then trained to recognize these markers and learn when it should generate a more creative section.

Training one model

The researchers fine-tuned the instruction-following model using these marked examples. This is called instruction tuning, which means showing a model many examples of questions and good answers so it learns how to respond.

They used LoRA, a method that changes only a small part of a large model instead of retraining the entire model. An analogy would be teaching a skilled musician a new style by adjusting a few important habits rather than making them relearn every song.

At test time, the model no longer needs two models working together. It learns to insert the creativity markers by itself and chooses when to be more imaginative.

Measuring diversity

The researchers used several automatic measures to compare the model’s outputs. Some measures look at word choice or overall meaning.

They also created a new measure called LLM Graph-Edit Distance, or LLM-GED.

For this measure, an AI judge turns each story into a simple graph:

  • Nodes represent characters, places, objects, and events.
  • Edges show relationships, such as what happened before or after something else.

The system then compares two story graphs. If many changes are needed to turn one story into the other, the stories are structurally more different.

This helps detect differences that ordinary word-based measures might miss. Two stories could use different words but still follow exactly the same plot. LLM-GED tries to notice this kind of repeated story pattern.

Testing the models

The researchers tested several models, including LLaMA and Qwen models ranging from 7 billion to 32 billion parameters. They asked them to generate stories and compared CreativeInstruct with:

  • The normal instruction-tuned model.
  • BACo running during generation, which uses two models.
  • A Distill version trained on BACo’s outputs but without the creativity markers.
  • Another creative-writing training method called CrPO in one experiment.

They also asked human evaluators to compare outputs. Finally, they tested whether a CreativeInstruct model would perform better when used as the starting point for reinforcement learning on math problems.

Reinforcement learning is like training by trial and error: the model tries several solutions, receives scores, and gradually learns which strategies work best.

4. What did the researchers find?

More varied stories

CreativeInstruct generally produced stories that were more different from one another than stories from the normal instruction-tuned models.

For example, when asked to write about being the only person who remembers yesterday, the regular model often began with similar phrases and used similar ideas. CreativeInstruct produced more varied versions, with different characters, settings, and explanations.

The paper reports especially strong improvements for the LLaMA-3.1 8B model:

  • About 48% more semantic diversity.
  • About 63% more structural diversity compared with the regular instruction-tuned model.

Semantic diversity means the stories have different meanings or ideas. Structural diversity means they have different plot shapes and events.

CreativeInstruct also produced more unique names for characters and places. For one model, the percentage of unique proper nouns was:

Model version Unique names within the same prompt group
Instruction-tuned model 18.1%
Distill 26.6%
CreativeInstruct 37.1%

This suggests that CreativeInstruct was less likely to reuse the same character or location names repeatedly.

Quality was mostly preserved

Being creative is not useful if the writing becomes confusing or badly written. The researchers therefore measured:

  • Coherence: Does the story make sense?
  • Fluency: Does it sound natural?
  • Relevance: Does it answer the prompt?
  • Writing quality: How strong is the writing overall?

CreativeInstruct usually kept quality close to the normal instruction-tuned model. In some cases, it even received higher writing-quality scores.

The model was not always the best on every quality measure or for every model size. However, the overall results suggest that the extra creativity did not cause a major loss in clarity or usefulness.

People preferred its creativity

Human evaluators compared stories from CreativeInstruct with stories from the regular instruction-tuned model.

They judged CreativeInstruct to be more creative in 70.3% of comparisons. It was also preferred for diversity in 57.4% of comparisons.

This is important because it shows that the improvement was not only visible in computer-generated scores. Human readers also noticed that the stories felt more creative.

More training data helped

The researchers found that using more creativity-tagged examples usually increased diversity. The results had not clearly reached a limit, meaning that even more training data might improve the model further.

They also found that using varied, general writing prompts worked better than using a small collection of only narrative-writing examples. This suggests that the model benefits from learning creativity across many different kinds of instructions.

Better starting point for reinforcement learning

The researchers also tested CreativeInstruct for math reasoning.

They trained two Qwen3 8B models with the same reinforcement-learning method:

  • A normal instruction-tuned model.
  • A CreativeInstruct model.

After reinforcement learning, the CreativeInstruct version performed better:

Model MATH accuracy AMC accuracy
Instruction-tuned + RL 40.9% 43.8%
CreativeInstruct + RL 45.9% 47.8%

The CreativeInstruct model improved by about:

  • 5 percentage points on MATH.
  • 4 percentage points on AMC.

The researchers believe that a more diverse model explores more possible solution methods. This is useful in reinforcement learning because trying only one type of answer is like practicing one route to a puzzle and never checking whether another route works better.

5. Why is this research important?

Many LLMs are very good at giving safe, organized, predictable answers. However, predictable answers can become a problem when users want:

  • Stories and poems.
  • Brainstorming.
  • New scientific ideas.
  • Different solutions to difficult problems.
  • More varied examples for training or testing.

CreativeInstruct offers a way to keep one model’s reliability while making its outputs less repetitive. It also avoids needing two models at the same time during normal use. This can reduce computer memory use and make generation faster and simpler.

The research may also affect how future AI systems are trained. Creativity is not only useful for writing: diverse attempts can help an AI explore more possibilities when solving math, planning actions, or learning through trial and error.

Simple conclusion

The paper’s main message is that LLMs do not have to choose between quality and creativity. By learning when to use special “creative” parts of its generation, a single model can produce more original and varied answers while still following instructions and writing clearly.

The results are promising, but the study mainly tests storytelling and a particular set of models and training methods. More research would be needed to see whether the approach works equally well for other languages, subjects, and real-world applications.

Knowledge Gaps

The paper leaves the following knowledge gaps, limitations, and open questions unresolved:

  • Generalization beyond narrative writing is unclear. Training data and primary evaluation focus on English story generation, so it is unknown whether CreativeInstruct improves creativity in dialogue, poetry, marketing, scientific ideation, code, multimodal generation, or other open-ended tasks.
  • Cross-lingual and cultural generalization is unexplored. The method is evaluated only on English data, leaving open whether creativity tags and routing behavior transfer across languages, cultures, and different narrative traditions.
  • The contribution of the routing heuristic is not isolated. Although the paper claims the method is agnostic to the routing framework, nearly all training data are generated with BACo prob+punc; comparisons using alternative routers or randomly selected creative spans are needed.
  • The causal role of creativity tags remains underdetermined. The Distill baseline removes the tags, but the study does not separately test whether gains arise from explicit span supervision, the particular placement of tags, additional formatting effects, or exposure to BACo-generated outputs.
  • The model’s self-injection behavior is not analyzed. The paper does not report how often, where, or for how long models generate [StartCreativity] and [EndCreativity] tokens, nor whether these spans correspond to meaningful changes in generation strategy.
  • The relationship between token-level routing signals and human creativity is unknown. It remains unclear whether high entropy, punctuation-based routing, or base-model attribution reliably identifies locations where creative variation is beneficial.
  • The quality–diversity trade-off is not fully characterized. Aggregate scores can conceal failures on individual prompts; the paper does not analyze when CreativeInstruct harms coherence, relevance, factuality, safety, or adherence to specific user constraints.
  • Robustness to decoding settings is unexplored. Results are not systematically reported across temperatures, top-pp values, beam/search procedures, random seeds, or generation lengths, making it unclear whether the gains are intrinsic to the checkpoint or dependent on a particular sampling configuration.
  • The evaluation distribution is narrow. Narrative Discourse and GPT-generated five-sentence prompts may not represent real user requests, longer-form narratives, difficult constraints, or adversarial prompts.
  • The LLM-GED metric lacks sufficient validation against independent human judgments. Its reported correlation with structural-diversity judgments is not detailed enough to establish reliability, and the metric may reflect the chosen judge model’s narrative priors rather than genuine structural variation.
  • LLM-GED may be sensitive to judge-model artifacts. All LLM-based evaluations use GPT-5-mini, but the paper does not test judge agreement across models, prompting schemes, temperatures, or open-source evaluators.
  • The graph representation is not independently reproducible or objectively specified. Entity canonicalization, event extraction, semantic-role assignment, temporal ordering, and graph-edit costs depend on LLM interpretation and may produce inconsistent graphs.
  • The normalization of graph edit distance is not theoretically justified. Dividing by the maximum graph size may bias comparisons involving stories of different lengths or graph densities; alternative distance functions and length-controlled evaluations remain to be studied.
  • Automatic quality evaluation is insufficiently validated. The paper omits human quality comparisons because of low agreement, yet relies on LLM-based quality scores and WQRM without establishing that these measures are reliable for the generated outputs.
  • Human evaluation is small and limited in scope. Only 50 prompts, three technically trained annotators, and partial three-way annotation are used; broader demographic representation, larger samples, domain experts, and independent replication are needed.
  • Human quality judgments remain unresolved. The reported negative Cohen’s κ\kappa for quality prevents a clear conclusion about whether diversity gains preserve human-perceived quality.
  • The statistical analysis is incomplete. Confidence intervals, effect sizes, per-prompt variance, corrections for multiple comparisons, and significance tests for most automatic metrics are not reported.
  • The comparison set is incomplete. The method is compared with BACo, Distill, Instruct, and one CrPO configuration, but not comprehensively against other diversity-aware fine-tuning, preference-optimization, mixture-of-experts, decoding, or sampling methods.
  • Compute and training costs are not fully quantified. The paper emphasizes lower inference cost than dual-model routing but does not report the cost of synthetic data generation, fine-tuning, storage, or the break-even point relative to inference-time methods.
  • The scalability claim is based on a limited data range. Training-data scaling is shown only up to 12,000 synthetic samples and has not established whether performance eventually saturates, degrades, or exhibits diminishing returns.
  • Synthetic-data quality and contamination are not examined. The study does not assess whether BACo outputs contain artifacts, duplicated patterns, benchmark leakage, or undesirable base-model behaviors that are transferred during fine-tuning.
  • Transfer across model families is confounded. The Qwen3 32B model is trained using Qwen2.5 32B-generated data because a Qwen3 base model is unavailable, so the reported result does not isolate the effect of CreativeInstruct from cross-family distillation.
  • The method’s dependence on base-model access during training is underexplored. Although base-model access is unnecessary at inference, synthetic-data construction still requires paired base and aligned models; the method’s practicality when such pairs differ substantially or are unavailable is unresolved.
  • Catastrophic forgetting and broader capability retention are not evaluated. The paper does not test whether CreativeInstruct affects instruction following, factual knowledge, coding, mathematical reasoning before RL, safety behavior, or long-context performance.
  • Safety implications of increased diversity are not studied. Greater divergence from aligned outputs could increase harmful, offensive, biased, hallucinated, or policy-violating generations, but no safety evaluation is reported.
  • The RL findings have limited evidential scope. Only Qwen3 8B, GRPO, mathematical reasoning, 1,000 training steps, and one primary training split are evaluated; it remains unknown whether the benefit extends to other models, RL algorithms, reward functions, domains, or longer training.
  • The mechanism behind the RL improvement is not established. The paper attributes gains to improved exploration but does not measure rollout diversity, solution-strategy coverage, entropy, exploration trajectories, or whether CreativeInstruct simply provides a better initialization for unrelated reasons.
  • The standalone reasoning effect is ambiguous. CreativeInstruct improves some MATH results before RL but slightly lowers AMC performance, leaving unclear when diversity instruction tuning helps, harms, or has no effect on mathematical reasoning.
  • The persistence and controllability of creativity gains are unknown. The paper does not test whether gains survive continued supervised fine-tuning, preference optimization, safety alignment, or RL, nor whether users can reliably control the desired creativity level.
  • Long-term repetition and mode collapse are not evaluated. The experiments use three or ten samples per prompt, so it remains unknown whether CreativeInstruct maintains diversity over hundreds or thousands of generations and across repeated deployment.
  • Theoretical understanding is limited. The paper demonstrates empirical improvements but does not explain why localized creativity spans outperform whole-output diversity objectives or how the learned internal switching policy relates to model representations and decoding probabilities.

Practical Applications

Immediate Applications

  • Creative-writing assistants and content-generation tools — Media, publishing, marketing, and entertainment. Deploy a CreativeInstruct-trained model as a single-checkpoint assistant for generating multiple non-repetitive story concepts, advertising variants, film or game premises, character profiles, and narrative drafts. The model’s creativity spans can be triggered internally, avoiding the latency and memory cost of running both a base and an instruction-tuned model at inference time. Evidence: CreativeInstruct achieved higher semantic and structural diversity than standard instruction-tuned, distilled, and—in several settings—multi-model routing baselines; human evaluators preferred its outputs for creativity in 70.3% of comparisons. Dependencies: Outputs still require editorial review, fact checking, copyright screening, and safety filtering. Results were demonstrated primarily on English narrative prompts, so performance may vary by language, genre, and domain.
  • Multi-option ideation workflows — Product design, consulting, advertising, and research. Integrate the model into brainstorming systems that generate a portfolio of substantially different proposals rather than many lexical variations of the same proposal. For example, a product team could request alternative product concepts, user personas, campaign strategies, or solution architectures and then rank them using human or automated criteria. Evidence: The method improves narrative-level variation, including event structure and proper-noun uniqueness, rather than merely changing wording. Dependencies: Diversity should be constrained by task requirements; unconstrained novelty can reduce relevance, feasibility, or brand consistency. A downstream ranking or human-selection stage remains necessary.
  • Personalized educational content — Education and tutoring software. Use CreativeInstruct to produce multiple explanations, analogies, examples, practice questions, and story-based learning activities for the same concept. Different students could receive structurally distinct explanations while preserving instructional relevance. Evidence: The approach is designed to preserve instruction following and quality while increasing generation diversity. Dependencies: Educational deployments require curriculum alignment, age-appropriate safety controls, factual validation, and teacher oversight. The paper does not directly evaluate learning outcomes or classroom effectiveness.
  • Synthetic-data generation with reduced mode collapse — Machine-learning engineering and academia. Generate more varied instruction-tuning examples, narrative data, reasoning trajectories, or user-intent variants for model development. This can help datasets cover a broader range of entities, scenarios, and solution strategies than standard aligned models typically produce. Evidence: CreativeInstruct improves diversity as the amount of creativity-tagged training data increases and outperforms untagged distillation baselines. Dependencies: Synthetic data may reproduce model biases or introduce low-quality and factually incorrect examples. Diversity metrics should be combined with deduplication, quality filtering, contamination checks, and human or model-based validation.
  • Diversity-aware evaluation of generative systems — AI research and model benchmarking. Adopt the paper’s LLM Graph-Edit-Distance approach as an additional evaluation workflow for creative generation. Stories or other structured outputs can be converted into abstract graphs containing entities, events, semantic roles, and temporal relations, allowing evaluators to distinguish genuine structural variation from superficial paraphrasing. Evidence: LLM-GED is intended to capture narrative diversity missed by lexical and embedding-based metrics and correlates better with structural-diversity judgments in the reported analysis. Dependencies: The metric depends on an LLM judge and can inherit its biases, prompting sensitivity, nondeterminism, and evaluation cost. It should not replace human assessment or deterministic metrics, especially in high-stakes benchmarking.
  • Single-model replacement for dual-model creative decoding — LLM serving and software infrastructure. Organizations currently using base/aligned routing methods can distill the routing behavior into a CreativeInstruct-style LoRA adapter. The resulting deployment requires only one model at inference time, potentially reducing GPU memory usage, serving complexity, and response latency. Evidence: The model learns to insert [StartCreativity] and [EndCreativity] spans internally and reportedly outperforms the BACo test-time baseline in several diversity measures. Dependencies: Training requires access to a base/aligned model pair, or a suitable substitute model for data generation. Savings depend on serving architecture, adapter size, sequence length, and the cost of synthetic-data generation.
  • Exploration-oriented generation for reinforcement-learning pipelines — Reasoning systems and agent training. Initialize GRPO or related RL training with a CreativeInstruct checkpoint to obtain more varied rollouts and solution strategies. This is immediately testable for mathematical reasoning, code search, planning, and other tasks where reward-guided exploration is limited by repetitive trajectories. Evidence: In the reported Qwen3 8B experiment, CreativeInstruct plus GRPO improved MATH accuracy from 0.424 to 0.459 and AMC accuracy from 0.428 to 0.478, outperforming the corresponding instruction-tuned RL system on AMC. Dependencies: Gains may depend on the reward function, rollout budget, task distribution, and RL algorithm. Greater diversity can also produce more invalid or unsafe trajectories, increasing verification and compute costs.
  • Everyday creative assistance — Writing, planning, and personal productivity. Deploy the approach in writing applications that offer alternative emails, travel itineraries, meal plans, hobbies, celebration ideas, or personal projects without repeatedly returning the same templates. Users could choose between “standard,” “creative,” and intermediate generation modes. Dependencies: Personalization, factual accuracy, privacy protection, and controllable novelty are required. The model should clearly distinguish imaginative suggestions from factual recommendations.

Long-Term Applications

  • Diversity-preserving domain adaptation — Healthcare, law, finance, and public-sector decision support. Extend creativity-tagged instruction tuning beyond narrative writing to domains where generating multiple plausible hypotheses or plans is valuable—for example, differential-diagnosis candidates, legal argument structures, financial scenario analyses, or policy alternatives. The model could support—not replace—expert review by expanding the set of options considered. Rationale: The paper suggests that generation diversity benefits tasks requiring exploration, while the span-level mechanism may preserve aligned behavior in less creative portions of an output. Dependencies: Extensive domain-specific validation, calibrated uncertainty, auditability, privacy controls, and regulatory approval are essential. “Creative” outputs must not be interpreted as clinically, legally, or financially valid recommendations.
  • Creative planning for robotics and embodied agents — Robotics and autonomous systems. Use a diversity-enhanced LLM to propose varied task decompositions, navigation strategies, manipulation plans, or recovery behaviors. A planner could sample structurally distinct plans and pass them to a simulator or formal verifier before execution. Rationale: More diverse rollouts may improve exploration and recovery from novel situations, analogous to the reported RL benefits. Dependencies: This requires grounding language in sensorimotor state, reliable world models, collision and safety verification, simulators, and constrained action interfaces. Unchecked linguistic novelty is unsuitable for direct robot control.
  • Design-space exploration in engineering and energy systems — Engineering, energy, and climate technology. Couple CreativeInstruct with physics simulators, optimization tools, and constraint checkers to generate diverse candidate designs for batteries, power-grid configurations, buildings, materials, or renewable-energy deployments. Rationale: Structural diversity could reduce premature convergence on familiar designs and broaden the initial search space. Dependencies: Candidate generation must be subordinated to physical simulation, cost models, safety constraints, and experimental validation. The paper provides no evidence that language-level diversity alone improves engineering performance.
  • Diversity-aware RL for general reasoning and agents — AI research and automated discovery. Develop training methods that combine CreativeInstruct initialization with explicit diversity measurements, adaptive rollout selection, or novelty-sensitive rewards. Potential applications include theorem proving, software debugging, scientific hypothesis generation, and web or computer-use agents. Rationale: The reported gains on AMC and MATH indicate that a more exploratory starting policy can improve out-of-domain RL performance. Dependencies: Further studies are needed across tasks, model sizes, reward designs, and random seeds. Diversity must be balanced against correctness, exploitability of rewards, inference cost, and reproducibility.
  • Structured diversity benchmarks for non-narrative outputs — Academia and industrial evaluation. Generalize LLM-GED from story graphs to representations of code architectures, reasoning proofs, business plans, scientific hypotheses, or agent trajectories. Evaluation could compare not only surface form but also control flow, causal structure, entities, and solution strategies. Rationale: The paper’s central metric innovation provides a template for measuring meaningful structural variation rather than paraphrase diversity. Dependencies: Each domain needs a validated schema and reliable canonicalization procedure. LLM-based graph extraction may introduce evaluator bias, and deterministic graph-edit pipelines may become computationally expensive at scale.
  • Controllable creativity interfaces and adaptive generation policies — Consumer software and enterprise platforms. Build models that dynamically adjust creativity according to user intent, risk level, or workflow stage: conservative drafting for factual reports, moderate variation for presentations, and high exploration for ideation. The learned span-switching mechanism could be extended to multiple controls such as creativity, risk, verbosity, and domain specificity. Rationale: CreativeInstruct already localizes creativity to selected spans instead of applying a diversity objective uniformly to the entire response. Dependencies: Reliable control tokens, interpretability of switching decisions, user-facing calibration, and robust evaluation are needed. Higher creativity settings may increase hallucination, policy violations, or inconsistency.
  • Policy and procurement standards for generative-model diversity — Government and AI governance. Incorporate structural-diversity testing into evaluations of public-facing generative systems, particularly where homogeneous outputs could narrow public communication, educational materials, or policy-option analysis. Procurement frameworks could require reporting diversity alongside accuracy, safety, and cost. Rationale: The paper shows that aligned models can produce repetitive outputs even when they remain fluent and instruction-following, suggesting that conventional quality metrics are incomplete. Dependencies: Diversity is not inherently beneficial in every context; standards must define acceptable diversity, prevent discriminatory variation, and avoid rewarding novelty at the expense of reliability. Independent human audits and domain-specific benchmarks would be required.

Glossary

  • Aligned model: An LLM adapted through post-training to follow instructions and satisfy behavioral objectives. “outputs from post-trained -- i.e., aligned -- LLMs tend to exhibit homogeneity”
  • Annotator agreement: The degree to which evaluators provide consistent judgments. “To assess inter-annotator agreement, a subset of 14 prompts are evaluated by all three annotators.”
  • Base model: A pretrained LLM before instruction tuning or alignment. “base model -- which has greater diversity”
  • BACo: An inference-time routing method that combines outputs from base and aligned LLMs. “use BACo -- a competitive inference-time routing strategy”
  • Canonicalization: The conversion of varied entities or representations into standardized forms. “we canonicalize entities into abstract identifiers”
  • Checkpoint: A saved model state containing learned parameters at a particular training stage. “GRPO applied to a CreativeInstruct checkpoint”
  • Cohen’s kappa: A statistic measuring agreement between annotators while accounting for agreement expected by chance. “We compute inter-annotator agreement using Cohen's κ\kappa on pairwise judgments.”
  • Cosine dissimilarity: A distance measure derived from the cosine similarity between vector representations. “including a +0.149 gain in MiniLM cosine dissimilarity over Instruct”
  • Creative preference optimization (CrPO): A preference-optimization algorithm designed to improve the creativity of language-model outputs. “we compare to one additional baseline, LLaMA-3.1 8B trained with the creative preference optimization (CrPO) algorithm”
  • Decoding: The process of selecting successive tokens to produce a model’s output. “recent work has introduced decoding frameworks that incorporate outputs from both a base model”
  • Distillation: Training a model to reproduce the behavior or outputs of another model or system. “This baseline directly measures the contribution of these explicit markers.”
  • Divergent thinking: Generating multiple different ideas or possible solutions to a problem. “define creativity to be a composite of divergent and convergent thinking”
  • Embedding: A numerical vector representation of text, tokens, or other data used to compare semantic content. “commonly used semantic metrics: embedding based cosine dissimilarity”
  • Entropy: A measure of uncertainty in a probability distribution, here used to characterize uncertainty over possible next tokens. “high-entropy tokens are routed to the base model”
  • Fine-tuning: Further training of a pretrained model on a task- or domain-specific dataset. “We fine-tune aligned models on our generated dataset”
  • Fluency: The linguistic smoothness, grammaticality, and naturalness of generated text. “we evaluate our generations for quality along dimensions of coherence, fluency, and relevance”
  • Graph edit distance (GED): The minimum cost or number of edits required to transform one graph into another. “the judge estimates a normalized graph edit distance”
  • GRPO: A reinforcement-learning method that optimizes LLMs using grouped sampled outputs and their relative rewards. “GRPO applied to a CreativeInstruct checkpoint improves”
  • Instruction tuning: Supervised training that teaches a LLM to respond appropriately to natural-language instructions. “CreativeInstruct, an instruction-tuning method that trains a single, unified LLM”
  • Inter-annotator agreement: The consistency of judgments made by multiple human evaluators. “To assess inter-annotator agreement, a subset of 14 prompts are evaluated by all three annotators.”
  • Inference-time routing: Dynamically choosing among models or generation sources while producing an output. “BACo -- a competitive inference-time routing strategy”
  • LLM: A neural LLM trained on large text corpora to generate and process natural language. “While post-training improves the capabilities of LLMs”
  • Lexical diversity: Variation in the words or surface forms used across generated texts. “We also evaluate on lexical metrics included in \cref{appen:lexical}.”
  • Likert scale: An ordinal rating scale used to measure judgments such as quality or agreement. “Quality evaluations (Likert 1--5)”
  • Low-Rank Adaptation (LoRA): A parameter-efficient fine-tuning technique that trains low-rank update matrices instead of all model parameters. “We fine-tune aligned models on our generated dataset with creativity tokens injected, using LoRA”
  • Mode collapse: A tendency for a generative model to produce a narrow range of repetitive outputs. “Verbalized sampling: How to mitigate mode collapse and unlock LLM diversity”
  • Named entity recognition (NER): The identification and classification of entities such as people, places, and organizations in text. “identified using the spaCy NER tagger”
  • Narrative graph: A graph abstraction representing the entities, events, relationships, and temporal structure of a story. “first represent each story as an abstract event graph”
  • Narrative-level diversity: Variation in the underlying events, entities, and structures of narratives rather than only in their wording. “These scores measure narrative-level diversity”
  • NLI Diversity: A diversity metric based on natural-language-inference relationships between generated texts. “NLI Div”
  • Open-domain generalization: The ability of a model trained in one setting to perform effectively on different or previously unseen data. “enabling better OOD generalization”
  • Out-of-distribution (OOD): Describing data or tasks that differ from the distribution used for training. “After RL, the picture changes for the OOD data”
  • Pairwise preference judgment: An evaluation in which an annotator chooses between two systems or outputs. “Annotators are asked to provide pairwise preference judgments”
  • Post-training: Training performed after a model’s initial pretraining, including instruction tuning, preference optimization, or reinforcement learning. “While post-training greatly improves the abilities of LLMs”
  • Proper noun uniqueness: The proportion of distinct proper nouns among all proper-noun occurrences. “To quantify this, we compute proper noun uniqueness”
  • Reinforcement learning (RL): A training paradigm in which an agent improves by receiving rewards for its actions. “More broadly, generation diversity is a critical factor across a range of tasks, including reinforcement learning (RL)”
  • Rollout: A sampled sequence of actions or outputs generated by a policy during reinforcement learning. “Current LLM RL post-training methods like GRPO sample roll-outs from a policy”
  • Semantic entropy: An uncertainty measure that groups outputs by meaning rather than by exact wording. “semantic entropy \citep{kuhn2023semantic}”
  • Semantic role: The functional role an entity plays in an event, such as agent, affected participant, or cause. “We further prompt the model to use semantic roles”
  • Semantic diversity: Variation in the meanings or concepts expressed by generated outputs. “CreativeInstruct consistently improves semantic and structural diversity”
  • Sentence boundary: A location marking the beginning or end of a sentence, often represented by punctuation or formatting tokens. “whether the token represents a sentence boundary”
  • Span: A contiguous sequence of tokens or text units treated as a single segment. “We track base model spans in the generated outputs”
  • Structural diversity: Variation in the organization, event structure, and relationships underlying generated texts. “63\% gains in structural diversity over the base instruct model”
  • Synthetic training data: Training examples generated by models rather than collected directly from human-produced sources. “Scaling synthetic training data improves semantic and narrative diversity”
  • Test-time computation: Computation performed during model use, after training, to influence or improve generation. “these methods incur latency and computational overhead at test-time”
  • Token entropy: The uncertainty associated with the probability distribution over the next token. “The BACo prob+punc variant routes based on token probability and token type.”
  • Token-level routing: Selecting a generation source separately for each token. “an inference-time token-level routing framework”
  • Unified model: A single model that internally reproduces behaviors otherwise obtained by combining multiple models. “trains a single, unified LLM to steer its own output”
  • Vendi Score: A diversity measure based on the effective number of distinct elements represented in a set, computed from pairwise similarities. “Vendi Score (SimCSE)”
  • Writing Quality Reward Model (WQRM): A learned evaluator that assigns a writing-quality score based on human preference data. “We also use a writing quality reward model (WQRM) informed by human preferences”

Open Problems

We haven't generated a list of open problems mentioned in this paper yet.

Tweets

Sign up for free to view the 9 tweets with 50 likes about this paper.