Human-Guided DSAC for Autonomous Driving
- The paper introduces H-DSAC, which integrates human interventions via Proxy Value Propagation into the DSAC framework to encode expert intent and penalize risky actions.
- It employs a reward-free, distributional TD update that propagates sparse human labels into a dense return signal, ensuring uncertainty-aware and safe policy learning.
- Empirical results show that H-DSAC delivers faster convergence, enhanced sample efficiency, and reduced safety costs compared to traditional RL approaches in autonomous driving.
Human-Guided Distributional Soft Actor-Critic (H-DSAC) is a human-in-the-loop reinforcement learning method for autonomous driving that combines Distributional Soft Actor-Critic (DSAC) with Proxy Value Propagation (PVP) to achieve safe and sample-efficient policy learning in real-world environments. In the formulation presented for real-world driving, H-DSAC is explicitly described as a reward-free, active human-in-the-loop learning method whose key innovation is the construction of a distributional proxy value function that encodes human intent by assigning higher expected returns to expert demonstrations and penalizing actions that require human intervention; a related 2025 formulation develops the same human-guided DSAC core within a broader confidence-guided human-AI collaboration framework that adds shared control and confidence-based policy switching (Zeqiao et al., 7 Oct 2025, Zeqiao et al., 4 Jun 2025).
1. Problem setting and motivation
H-DSAC is motivated by the mismatch between the promise of end-to-end reinforcement learning for autonomous driving and the constraints of real road deployment. The problem statement emphasizes two critical challenges. The first is safety during training: unconstrained trial-and-error exploration can cause collisions or near-misses. The second is sample efficiency: rare but safety-critical events, including emergency braking and sudden lane changes, require enormous data to learn from scratch. Human-in-the-loop methods are introduced precisely to mitigate these issues by injecting expert corrections at key moments, thereby reducing risky exploration and improving sample efficiency (Zeqiao et al., 7 Oct 2025).
The related C-HAC formulation broadens this diagnosis by noting that both reinforcement learning and imitation learning face safe-exploration and distribution-shift challenges, while existing human-AI collaboration schemes can rely too heavily on extensive human intervention. Within that framework, the human-guided DSAC component is intended to achieve rapid and stable learning of human-guided policies with minimal human interaction, before any subsequent reward-driven enhancement is introduced (Zeqiao et al., 4 Jun 2025).
In this sense, H-DSAC addresses a specific regime of autonomous driving research: online learning under real-world safety constraints, where sparse human interventions must be converted into a dense control signal that is sufficiently informative to shape the policy away from risky regions and toward expert-like behavior.
2. Distributional soft actor-critic backbone
The algorithmic backbone of H-DSAC is DSAC, which augments soft actor-critic with a return-distribution model. In the real-world driving formulation, the policy maximizes expected soft returns
with the practical actor objective
Instead of estimating a scalar -value, DSAC models the return as a random variable with distribution , and applies the distributional Bellman update
Critic learning minimizes a KL-based loss between the projected target distribution and the critic distribution , while policy improvement uses the gradient of the entropy-regularized objective (Zeqiao et al., 7 Oct 2025).
The related technical exposition gives the corresponding soft-return definition
and writes the distributional soft Bellman operator as
with KL-divergence minimization against the target measure. It also notes that many implementations discretize the return support in 0 atoms and perform quantile-regression or Cramér-distance updates, whereas the actor maximizes the entropy-augmented expectation of 1 (Zeqiao et al., 4 Jun 2025).
For H-DSAC, the significance of the DSAC backbone is that human guidance is not inserted into a scalar critic but into a learned return distribution. This makes the value model compatible with both expectation-based policy optimization and uncertainty- or confidence-oriented extensions.
3. Proxy Value Propagation and human-intention encoding
The defining mechanism of H-DSAC is Proxy Value Propagation. In the real-world formulation, whenever the human expert intervenes at state 2, the agent’s attempted action 3 and the expert’s corrective action 4 are recorded as pairs 5 in a human buffer 6. The proxy value function 7 then labels human actions with a Dirac at 8 and novice actions at 9,
0
and optimizes the proxy-value loss
1
When 2 is modeled as Gaussian 3, each KL term expands to squared-error forms in 4 and variance regularizers (Zeqiao et al., 7 Oct 2025).
The same mechanism is presented in the related human-guided DSAC summary using a novice buffer 5 of autonomous rollouts and a human buffer 6 of interventions. There, the proxy-value loss is written for 7 as
8
with closed-form human and novice terms
9
This formulation makes explicit that the human-chosen action is treated as “good” and the novice action as “bad,” but the signal is encoded as a return distribution rather than as a direct action-cloning target (Zeqiao et al., 4 Jun 2025).
A central property of PVP is that the sparse labels attached to intervention states are propagated to unlabeled states. In the real-world H-DSAC description, this is done via a reward-free distributional TD update over the combined buffer 0:
1
where
2
The total critic loss is then
3
The C-HAC summary gives the analogous reward-free TD loss for the proxy-guided critic and reaches the same total value-distribution objective (Zeqiao et al., 7 Oct 2025, Zeqiao et al., 4 Jun 2025).
4. Learning procedure and implementation
The online procedure begins by initializing an actor, a distributional critic, target critic parameters, and separate human and novice replay buffers. At each step, the agent observes state 4 and samples an action from the current actor. If the human decides to intervene, the human corrective action is executed and the tuple 5 is stored in 6; otherwise the agent action is executed and stored in 7. The executed transition 8 is stored in the combined buffer. Every 9 steps, the method samples minibatches from 0 and 1, updates the critic using 2, updates the actor using
3
updates the temperature parameter 4, and performs soft target updates for 5 and 6 (Zeqiao et al., 7 Oct 2025).
The state representation used in the real-world system includes vehicle kinematics, specifically speed, lateral offset, and heading; surrounding obstacles represented as 240-dimensional LiDAR vectors; and navigation waypoints, specifically the next 30 checkpoints and turn commands. The action output is 2-dimensional continuous control, consisting of acceleration and steering angle. The critic 7 is a two-layer MLP with 256-256 units and ReLU activations, outputting the mean 8 and log-variance so as to model a diagonal Gaussian over returns. The actor 9 is also a two-layer 256-256 ReLU MLP and outputs Gaussian policy mean and log-standard-deviation for each action dimension. Reported hyperparameters are 0, 1, batch size 2, discount 3, target smoothing 4, initial 5, novice buffer size 6, and a dynamically collected human buffer of approximately 7 in the experiments (Zeqiao et al., 7 Oct 2025).
The significance of these implementation choices lies in their emphasis on practical real-world training times. The state design is explicitly described as “well-designed,” and the method is reported to achieve real-world driving policy learning within practical training times (Zeqiao et al., 7 Oct 2025).
5. Safety properties and empirical performance
The safety rationale of H-DSAC is operational rather than purely post hoc. Human interventions override dangerous actions in real time, and PVP penalizes such actions in the value distribution, steering the policy away from risky regions. In MetaDrive simulation, the reported sample complexity is 0.05 M environment steps for H-DSAC, compared with 1 M for SAC, PPO, and DSAC, together with approximately 15 K human labels. Under that regime, H-DSAC reports episodic return 8 versus 9 for DSAC/SAC/PPO, safety cost 0 versus 1, and success rate 2 versus 3. The same report states that H-DSAC is human-efficient, using only 14.8 K interventions versus 33.7 K for PVP, and that removing the PVP proxy loss slows convergence by more than 4 and increases safety cost by 5. In real-world UGV experiments, training uses 100 K steps at a 10 Hz control loop, the takeover rate falls from 6 to 7 by 80 K steps, and the learned policy successfully completes both training and unseen test routes while handling turns, pedestrian yielding, obstacle avoidance, and intersections robustly. The broader safety summary in the same source also states that the takeover rate drops from about 8 to near-zero by 80 K steps in approximately 2 hours of training (Zeqiao et al., 7 Oct 2025).
The related C-HAC experiments report the human-guided DSAC stage and the subsequent confidence-guided enhancement on the MetaDrive safety benchmark against model-free RL baselines, offline RL and imitation learning baselines, and other human-AI collaboration methods. Reported metrics over five seeds include a test return of 9 within 1 M frames, surpassing DSAC’s 0; safety cost of 1 in total, compared with unconstrained SAC at approximately 2k and PPO at approximately 3k; and success rate of 4, compared with DSAC at 5 and PVP at 6. The same source states that using only 15 k human steps in Stage I and 950 k autonomous steps, the method outperformed offline-RL methods trained on 50 k human steps. Its ablations report that removing shared control caused return to plunge by 70%, while removing confidence caused cost to rebound by 200%. Real-world UGV experiments on two campus routes are described as showing smooth, safe human-like trajectories (Zeqiao et al., 4 Jun 2025).
Taken together, these results establish the empirical profile repeatedly associated with H-DSAC: fast safe bootstrap from sparse interventions, lower training risk than unconstrained RL, and practical convergence in both simulation and real-world driving tasks.
6. Extensions, scope, and relation to adjacent methods
A key point of scope is that H-DSAC, as presented for real-world autonomous driving, is a reward-free active human-in-the-loop method. The proxy value function does not encode true environmental rewards; instead, it encodes human intent by assigning higher expected returns to expert demonstrations and penalizing actions that require human intervention. The actor is nevertheless trained with the DSAC-style entropy-regularized objective, using the expectation of the proxy-shaped return distribution as its optimization target (Zeqiao et al., 7 Oct 2025).
The C-HAC formulation extends this human-guided core by introducing a self-learning policy 7 after the human-guided policy 8 has converged to a safe base driving style. The behavior policy is then blended as
9
where 0 is a confidence-based intervention function. Confidence is computed from a second distribution network trained on real rewards, using the probability
1
and intervention is triggered when confidence that 2 outperforms 3 is insufficient. This extension preserves the human-guided DSAC mechanism but places it within a two-stage architecture consisting of human-guided learning followed by RL continuous enhancement (Zeqiao et al., 4 Jun 2025).
A recurrent misconception is to treat H-DSAC as straightforward behavior cloning from corrective demonstrations. The published formulations do not support that simplification. Human interventions are indeed sparse labels, but they are embedded in a distributional critic, optimized through KL objectives, and propagated across unlabeled states by a reward-free distributional TD update over the combined replay buffer (Zeqiao et al., 7 Oct 2025). Another potential source of confusion is terminological: the 2025 literature uses both “H-DSAC” and the broader “C-HAC” label. The former refers to the human-guided DSAC core built from DSAC and distributional proxy-value propagation; the latter denotes a larger confidence-guided human-AI collaboration strategy that incorporates the H-DSAC stage and then adds shared control and dynamic switching (Zeqiao et al., 4 Jun 2025).
This suggests that H-DSAC occupies a hybrid position between corrective human guidance, distributional value learning, and entropy-regularized actor-critic optimization. A plausible implication is that its principal methodological contribution is not merely the use of interventions, but the conversion of sparse interventions into a dense return-distribution signal that can support both safe bootstrap and, in the extended framework, later autonomous improvement.