Not All Prompts Are Equal: Exploration-Guided Prompt Scaffolding for Multimodal Reinforcement Post-Training

Yuanhao Yue∗1, Qianli Ma∗2, Chengyu Wang†1, Haoting Wang3, Lei Shen1,4, Jun Huang1

1Alibaba Cloud Computing   2Shanghai Jiao Tong University  
3Fudan University   4Xi'an Jiaotong University

Equal contribution. Corresponding author.

EMNLP 2026 main conference

Overview

Standard online RL treats every training prompt equally. Our framework instead adapts the prompt distribution to the policy's evolving capabilities.

Training prompts differ substantially in how informative they are for the current policy. Some are already saturated; others are too difficult to produce reliable learning signals. We introduce the Exploration Potential Score (EPS), a lightweight rollout-based proxy for prompt utility derived from KL-regularized policy improvement theory. EPS is computed directly from on-policy rollout statistics without auxiliary models or additional rollouts.

Rather than discarding lower-utility prompts, a teacher model rewrites them into scaffolded variants that preserve the original task intent while making subsequent reinforcement learning more informative. This reframes teacher supervision as training-data refinement—not output imitation.

Continuous refinement loop connecting the dynamic prompt pool, policy model, and teacher model.
Overview. Student rollouts reveal which prompts are useful now. Lower-utility prompts are rewritten by a teacher and returned to the evolving training pool, creating a continuous data-refinement cycle.
01 / SCORE

No extra rollout overhead

EPS reuses rewards that GRPO already collects and acts as an online ranking signal for prompt utility.

02 / SCAFFOLD

Refine prompts, not outputs

The teacher improves the training condition instead of asking the student to imitate target responses.

03 / REFRESH

Adapt throughout training

Prompts are retained, rewritten, reserved, and reactivated as their usefulness changes over time.

Why Not All Prompts Are Equal

The most informative prompts lie between “already solved” and “currently impossible.” Their rollouts contain meaningful success–failure variation and therefore support informative credit assignment.

Saturated

Already mastered

Nearly all rollouts succeed, so allocating more budget yields little additional gradient information.

High exploration potential

Ready to learn

Mixed outcomes provide useful contrast and a strong near-term policy-improvement signal.

Currently hard

Too difficult—for now

Uniformly poor rollouts provide weak or noisy supervision at the current training stage.

Exploration Potential Score. EPS approximates the reward improvement under a locally improved policy relative to the current policy:

Ê(x) = Σi ri · softmax(ri / β) − r̄

Higher EPS indicates more room for useful local improvement. Lower EPS suggests that a prompt is saturated or not yet learnable. In finite-sample settings, EPS is used as a practical routing signal rather than a calibrated forecast of future learning progress.

Methodology

The framework maintains a dynamic prompt pool and operates as a continuous three-stage loop: Score, Filter & Rewrite, and Refresh.

EPS-guided GRPO pipeline with policy rollouts, reward estimation, teacher rewriting, and prompt reinjection.
Training pipeline. On-policy rollouts generate rewards for EPS estimation. High-EPS prompts contribute directly to GRPO updates; low-EPS prompts are asynchronously rewritten by a teacher and reinjected into training.

01. EPS-Based Prompt Selection

Each sampled prompt is scored using rollout rewards. With the default threshold τ = 0, prompts above the threshold are retained for policy updates, while lower-scoring prompts are routed to rewriting.

02. Teacher-Guided Prompt Scaffolding

The teacher receives the original prompt, student rollouts, rewards, and EPS diagnostic context. It generates a task-preserving scaffold that clarifies constraints, decomposes subgoals, or redirects an incorrect reasoning path without directly revealing the answer.

03. Dynamic Prompt Pool Management

Rewritten prompts enter a refresh buffer and later return to the active pool. Original prompts are kept in reserve and periodically re-evaluated, allowing previously hard examples to become active once the student is ready.

Experiments

We integrate EPS-guided prompt scaffolding with GRPO and post-train Qwen3-VL models on two multimodal reasoning datasets. Evaluation covers both in-domain accuracy and transfer to four out-of-distribution benchmarks.

BackbonesQwen3-VL-2B and Qwen3-VL-4B
RL Training SetsGeometry3K and MMK12
OOD BenchmarksMathVerse, MathVision, MMMU, MMMU-Pro
Teacher ModelQwen-VL-Max
OptimizationGRPO, 3,000 steps, 8 rollouts per prompt
Default RoutingEPS threshold τ = 0

Across both training sets and model scales, our method consistently outperforms standard GRPO. Improvements are especially pronounced on challenging held-out benchmarks, suggesting that adaptive scaffolding improves transfer rather than merely optimizing the in-domain reward.

Main Results

+9.7%relative in-domain improvement on MMK12
+11.5%relative improvement on MathVision
+11.1%relative improvement on MMMU-Pro

Geometry3K Post-Training

Accuracy (%). OOD Avg. is the mean over MathVerse, MathVision, MMMU-Val, and MMMU-Pro.

Backbone / MethodGeo3KMathVerseMathVisionMMMU-ValMMMU-ProOOD Avg.
2B / N/A18.9734.0920.3947.8932.0833.61
2B / SFT38.6943.0227.3049.2235.6138.79
2B / GRPO55.4143.8126.6450.2237.6939.59
2B / Ours59.0746.5729.6150.5639.1341.47
4B / N/A47.0836.4031.9156.6741.3341.58
4B / SFT55.0753.1532.8960.3346.9448.33
4B / GRPO60.5752.5434.5460.5646.5348.54
4B / Ours65.3953.7335.2061.0049.0849.75

Higher-EPS subsets also produce stronger downstream performance during training, supporting EPS as a useful empirical indicator of prompt utility. Scaffolded data improves reward and advantage while retaining task intent, and the method remains effective across both 2B and 4B backbones.

BibTeX

@inproceedings{yue2026prompts,
  title={Not All Prompts Are Equal: Exploration-Guided Prompt Scaffolding for Multimodal Reinforcement Post-Training},
  author={Yue, Yuanhao and Ma, Qianli and Wang, Chengyu and Wang, Haoting and Shen, Lei and Huang, Jun},
  booktitle={Proceedings of the 2026 Conference on Empirical Methods in Natural Language Processing},
  year={2026}
}