CTD4 -- A Deep Continuous Distributional Actor-Critic Agent with a Kalman Fusion of Multiple Critics
David Valencia, Henry Williams, Yuning Xing, Trevor Gee, Bruce A MacDonald, Minas Liarokapis
TL;DR
The paper addresses the bottlenecks of categorical distributional RL in continuous control by introducing CTD4, a continuous distributional actor-critic that models the return distribution as a Gaussian $\mathcal{N}(\mu,\sigma)$ and uses an ensemble of critics fused via a Kalman filter to mitigate overestimation. The method replaces scalar Q-functions with Gaussian critics, computes a Bellman target $Z_{target} = R + \gamma Z(\mu_k,\sigma_k)$ using Kalman-fused parameters $(\mu_k,\sigma_k)$, and optimizes with KL divergence $D_{KL}$ between current and target distributions. Key contributions include (i) a fully continuous distributional RL framework for continuous actions, (ii) a Kalman fusion strategy that better exploits ensemble information, and (iii) empirical validation on the DeepMind Control Suite showing improved sample efficiency without heavy projection or tuning. This approach offers a scalable, robust alternative to prior CDRL methods and can be integrated into existing TD3-style pipelines to enhance performance in complex, real-world control tasks, with publicly available code and data for reproducibility.
Abstract
Categorical Distributional Reinforcement Learning (CDRL) has demonstrated superior sample efficiency in learning complex tasks compared to conventional Reinforcement Learning (RL) approaches. However, the practical application of CDRL is encumbered by challenging projection steps, detailed parameter tuning, and domain knowledge. This paper addresses these challenges by introducing a pioneering Continuous Distributional Model-Free RL algorithm tailored for continuous action spaces. The proposed algorithm simplifies the implementation of distributional RL, adopting an actor-critic architecture wherein the critic outputs a continuous probability distribution. Additionally, we propose an ensemble of multiple critics fused through a Kalman fusion mechanism to mitigate overestimation bias. Through a series of experiments, we validate that our proposed method provides a sample-efficient solution for executing complex continuous-control tasks.
