Reinforcement Learning Guidance Overview
- Reinforcement Learning Guidance (RLG) is a set of methods that augment traditional RL by incorporating auxiliary signals like evaluative feedback, language advice, and logic constraints.
- Key implementations adjust aspects such as data collection, policy updates, and action admissibility via learned dense rewards, teacher policies, and state masking.
- RLG has practical applications in robotics, aerospace, and diffusion models, demonstrating improvements in exploration efficiency, safety, and overall performance.
Reinforcement Learning Guidance (RLG) denotes a family of methods that steer reinforcement learning with structured signals beyond, or in addition to, the native environment reward. In the literature, those signals include evaluative feedback, preferences, high-level goals, state-only observation, and attention from humans; analytically derived dense guidance rewards from trajectory returns; teacher policies and suboptimal controllers; natural-language or large-language-model advice; formal constraints and temporal-logic specifications; and guidance extracted from prior or self-generated trajectories (Zhang et al., 2019, Gangwani et al., 2020, Shenfeld et al., 2023, Spieker, 2021, Hasanbeig et al., 2019, Wang et al., 2024). The common purpose is to improve credit assignment, exploration, coordination, safety, or alignment by altering the learning signal, the policy update, the admissible action set, or the data-collection process.
1. Conceptual scope and historical framing
A 2019 survey organized human guidance beyond conventional step-by-step action demonstrations into five frameworks: learning from evaluative feedback, learning from human preference, hierarchical imitation, imitation from observation, and learning attention from humans (Zhang et al., 2019). That framing is important because it already treats guidance as broader than imitation learning: the human need not execute the policy, and the signal need not be an action label. Instead, the signal may be a judgment, a comparison, a high-level option, a state-only trajectory, or an attention pattern.
Subsequent work broadens that scope further. Guidance appears as a learned dense reward derived from returns over trajectories containing a state-action pair; as a teacher policy whose influence is adjusted by comparison to a reward-only counterfactual; as state-conditional language advice that shapes action choice; as uncertainty-aware LLM action advice; as constraint-based intervention at the observation, action, or internal action-selection interface; as temporal-logic progress shaping via automata; and as trajectory-space regularization toward self-generated memories (Gangwani et al., 2020, Shenfeld et al., 2023, Tasrin et al., 2021, Shoaeinaeini et al., 2024, Spieker, 2021, Hasanbeig et al., 2019, Wang et al., 2024). This suggests that RLG is best understood as an umbrella concept for auxiliary structure injected into RL, rather than a single algorithmic family.
A recurrent misconception is that guidance is synonymous with reward shaping. The literature does not support that reduction. Some methods change only the reward signal; others alter policy selection, exploration support, action admissibility, representation learning, or the interaction loop itself. RLG therefore spans reward-side, policy-side, action-side, and data-collection-side interventions.
2. Guidance as learned rewards and surrogate objectives
A particularly explicit reward-side formulation appears in "Learning Guidance Rewards with Trajectory-space Smoothing" (Gangwani et al., 2020). In an infinite-horizon discounted MDP with return
the paper replaces the original objective with a trajectory-smoothed surrogate and derives a learned guidance reward
This reward is the expected trajectory return under a behavior-induced distribution of trajectories that contain . The appendix makes the empirical interpretation explicit: given a dataset of trajectories generated by , is the average return of previously seen trajectories containing that state-action pair. The authors interpret this as a simple form of uniform return redistribution.
The practical algorithm, Iterative Relative Credit Refinement (IRCR), does not train an auxiliary reward model. In tabular Q-learning it stores episodic returns in a buffer for each visited state-action pair and uses the average min-max normalized return as the reward replacing the environment reward. In SAC, TD3, and a C51-style distributional variant, each transition from an episode is relabeled with the episode return, normalized to , and that value is used in the critic target. The stated advantages are delay invariance, dense per-step supervision, simple integration with existing pipelines, no auxiliary networks, and applicability across single-agent, multi-agent, actor-critic, and distributional RL.
The same paper is explicit about the limits of this formulation. The reward is not potential-based, and the method optimizes the smoothed surrogate objective , not the original . There is no theorem of policy invariance relative to the native reward, the learned reward depends on the behavior distribution 0, and poor or adversarial behavior distributions can produce deceptive guidance rewards and local optima. The paper also distinguishes credit assignment from exploration: IRCR assumes some reward is available at least at the end of each episode and is not designed for hard-exploration settings in which all episodes return zero.
3. Guidance as teacher-, human-, and language-conditioned policy shaping
Teacher-guided formulations make the trust problem explicit: guidance can accelerate learning, but it can also trap the learner if the teacher is suboptimal or privileged. "TGRL: An Algorithm for Teacher Guided Reinforcement Learning" formulates this as
1
where the main policy is trained with reward plus imitation and the auxiliary policy 2 is trained only from reward (Shenfeld et al., 2023). Dualizing the constraint yields the effective imitation weight
3
so teacher influence is increased only when the guided learner outperforms the reward-only counterfactual. The same paper emphasizes that this handles privileged teachers and suboptimal teachers, and empirically reports that in Shadow Hand tactile manipulation RL alone achieves 4 success, the teacher 5, pure teacher-student learning 6, and TGRL 7.
A related but more localized trust mechanism appears in "Accelerating Reinforcement Learning with Suboptimal Guidance" (Bøhn et al., 2019). There, a suboptimal controller provides actions, but imitation is applied only when a Q-filter judges the guide better than the learner in the sampled state: 8 The behavior cloning loss is thus state-dependent, and the paper argues that using the guide’s own static value function 9 is more adaptive than evaluating both actions with the learner’s immature critic.
Human guidance is not restricted to teachers or demonstrations. "Opinion-Guided Reinforcement Learning" models uncertain state evaluations as subjective-logic opinions 0, fuses them with policy probabilities via Belief Constraint Fusion, and uses the resulting shaped policy as the initial policy for subsequent RL (Dagenais et al., 2024). The paper reports that opinions, even if uncertain, improve performance, and gives concrete cumulative-reward examples in Frozen Lake, including an unadvised mean cumulative reward of 1 and oracle-guided performance of 2 at 3.
Natural language and LLMs have extended policy shaping further. "Influencing Reinforcement Learning through Natural Language Guidance" introduces Automated Advice Aided Policy Shaping, with an Experience Driven Agent, an Advice Generator, and an Advice Driven Agent combined by
4
with 5 decayed over training (Tasrin et al., 2021). "Guiding Reinforcement Learning Using Uncertainty-Aware LLMs" uses a fine-tuned BERT advisor calibrated by Monte Carlo Dropout, then mixes the LLM and PPO policies according to entropy-based uncertainty: 6 On Minigrid Unlock Pickup, the reported AUC values are 7 for the uncertainty-aware method, 8 for uncalibrated LLM guidance, 9 for calibrated linear-decay shaping, and 0 for unguided RL (Shoaeinaeini et al., 2024).
4. Guidance as constraints, logic, and safe transfer
Constraint-guided work changes the interaction loop rather than the scalar reward. "Constraint-Guided Reinforcement Learning: Augmenting the Agent-Environment-Interaction" defines three interfaces for guidance: observation augmentation 1, post-hoc action replacement 2, and internal action masking 3 (Spieker, 2021). In the paper’s card-game and grid-world case studies, these interventions improve reliability, safer behavior, and accelerated training, with action masking strongest when invalid actions are common and observation masking strongest asymptotically in the grid-world task with combinatorial subgoals.
Logic-guided work replaces hand-designed shaping with automaton progress. "Certified Reinforcement Learning with Logic Guidance" translates an LTL specification into a Limit-Deterministic Generalised Büchi Automaton, synchronizes it with the MDP, tracks an accepting frontier, and gives positive reward when the next automaton state enters a currently required accepting set (Hasanbeig et al., 2019). Under stated assumptions and sufficiently large discount, the optimal policy for the shaped product process also maximizes the probability of satisfying the LTL formula. The paper’s contribution is therefore not only practical reward design but a certification link between return maximization and formal task satisfaction.
Safe-transfer guidance introduces a separate guide policy. "Reinforcement Learning by Guided Safe Exploration" trains a reward-free safe guide in a controlled source task, then uses that guide in the target task through KL-style policy regularization and composite behavior-policy sampling (Yang et al., 2023). The regularization weight is set to the safety Lagrange multiplier, 4, so guidance is strongest when the student is unsafe and fades as safety improves. The paper reports that control-switch, which hands control to the guide after the first unsafe event in a trajectory, is better than linear decay, and proves a safety-transfer result for the guide under a cost-preserving abstraction 5.
Taken together, these works show that RLG can operate through hard or soft constraints, symbolic temporal structure, and safe fallback behavior. They also show that guidance need not be a scalar reward bonus; it can be a runtime intervention or a formal state-space augmentation.
5. Guidance from self-generated experience and decentralized intent
Some guidance methods reuse the learner’s own past trajectories. "Learning Diverse Policies with Soft Self-Generated Guidance" introduces POSE, which stores self-generated trajectories in a memory
6
and constrains policy improvement so current trajectories remain near promising stored trajectories in behavior space, measured with Maximum Mean Discrepancy (Wang et al., 2024). The guidance objective is not imitation but trajectory-space regularization: 7 The paper’s emphasis is that even imperfect or suboptimal trajectories can be useful guidance, because they may enter promising regions of the state space in sparse or deceptive environments.
In decentralized multi-robot coverage, guidance has been used to encode likely cooperative intent. "Decentralized Coverage Path Planning with Reinforcement Learning and Dual Guidance" introduces DODGE, which combines artificial potential field guidance
8
for coverable nodes and heuristic guidance
9
for candidate actions (Liu et al., 2022). APF guidance is inserted as a node feature, while heuristic guidance adjusts decoder attention scores before masking and softmax. On 0 maps, the reported overlap rates are 1, 2, and 3 for 8, 14, and 20 agents, compared with 4, 5, and 6 for AWSTC.
These methods make a broader point: guidance can be extracted from prior trajectories or from structured approximations of others’ future claims. In both cases, RLG supplies an intermediate signal about where useful behavior is likely to lie, while leaving the final policy adaptive.
6. Applications, limitations, and broader extensions
Robotic manipulation has turned guidance into a real-time supervisory layer. "Accelerating Robotic Reinforcement Learning with Agent Guidance" proposes Agent-guided Policy Search, in which a multimodal agent implemented with Qwen3-VL-235B-A22B-Instruct provides either action guidance or exploration pruning, triggered asynchronously by FLOAT, an optimal-transport failure detector over DINOv2 embeddings (Chen et al., 12 Feb 2026). In USB insertion, AGPS reaches 7 success by step 400 and 8 by step 600, while in Chinese knot hanging it reaches 9 success by step 3000 and 0 by step 4000. The paper’s central interpretation is that the agent acts as a semantic world model that supplies intrinsic value priors over task-relevant regions.
Aerospace guidance has used RL guidance in a more literal control-theoretic sense. "Adaptive Guidance with Reinforcement Meta-Learning" trains recurrent PPO policies for Mars landing, asteroid landing, engine-failure accommodation, and radar-only guidance/navigation; the recurrent hidden state serves as an implicit online identifier of latent dynamics, and recurrent policies outperform both non-recurrent policies and DR/DV in the reported tasks (Gaudet et al., 2019). "Reinforcement Learning for Angle-Only Intercept Guidance of Maneuvering Targets" learns a policy that maps stabilized seeker angles and their changes,
1
directly to binary divert-thruster commands, and reports better hit statistics than augmented ZEM despite not requiring range estimation (Gaudet et al., 2019). "Reinforcement Learning for Gliding Projectile Guidance and Control" uses PPO to map a six-component observation 2 to two continuous control commands and reports mean miss distances of 3 m without wind and 4 m with an east wind of 5, compared with 6 m and 7 m for a PID baseline (Cahn et al., 30 Nov 2025).
The term has also been extended beyond classical sequential control. "Inference-Time Alignment Control for Diffusion Models with Reinforcement Learning Guidance" reinterprets an RL-fine-tuned diffusion or flow-matching model as an implicitly reward-conditioned model and combines the base and RL-aligned outputs at inference time: 8 The paper argues that the guidance scale 9 is mathematically equivalent to changing the KL coefficient from 0 to 1, thereby turning a fixed post-training alignment decision into an inference-time control knob (Jin et al., 28 Aug 2025). This is not classical RL policy search, but it shows that “RLG” has become a broader alignment term for RL-induced control over generative distributions.
Across the literature, several limitations recur. Guidance often optimizes a modified objective rather than the original task objective; its utility depends on the quality, calibration, or relevance of the guidance source; and it may fail when terminal rewards are absent, when teachers or advisors are misleading, or when structured priors are badly grounded (Gangwani et al., 2020, Shoaeinaeini et al., 2024, Chen et al., 12 Feb 2026). A plausible implication is that RLG is most reliable when the auxiliary signal is informative but not over-trusted, and when the method contains an explicit mechanism for attenuating or overriding that signal as learning progresses.