How to Stay Curious while Avoiding Noisy TVs using Aleatoric Uncertainty Estimation
Augustine N. Mavor-Parker, Kimberly A. Young, Caswell Barry, Lewis D. Griffin
TL;DR
The paper tackles exploration under sparse rewards by addressing the noisy TV problem through Aleatoric Mapping Agents (AMAs), which explicitly model aleatoric uncertainty and subtract it from prediction errors to focus on epistemic uncertainty. Using a double-headed network that predicts a mean $\hat{\mu}_{t+1}$ and a diagonal covariance $\hat{\Sigma}_{t+1}$, AMAs compute intrinsic rewards as $r^i_t = \|s_{t+1}-\hat{\mu}_{t+1}\|^2 - \eta \mathrm{Tr}(\hat{\Sigma}_{t+1})$ and minimize the likelihood-based loss $\mathcal{L}_{t+1} = (s_{t+1}-\hat{\mu}_{t+1})^T \hat{\Sigma}_{t+1}^{-1} (s_{t+1}-\hat{\mu}_{t+1}) + \lambda \log\det(\hat{\Sigma}_{t+1})$, with a separate policy. The approach is evaluated on Noisy MNIST, Minigrid, Mario/Space Invaders, and Bank Heist, demonstrating robustness to action-dependent noise and improved exploration compared to baselines like MSE-based curiosity, RND, and ensemble disagreements. The study also links to neuroscience via acetylcholine signaling, suggesting potential experimental tests and broader implications for understanding uncertainty in biological and artificial agents. Overall, AMAs advance robust exploration in stochastic environments and offer a framework for integrating aleatoric uncertainty estimation into curiosity-driven RL, with open-source code for replication.
Abstract
Exploration in environments with sparse rewards is difficult for artificial agents. Curiosity driven learning -- using feed-forward prediction errors as intrinsic rewards -- has achieved some success in these scenarios, but fails when faced with action-dependent noise sources. We present aleatoric mapping agents (AMAs), a neuroscience inspired solution modeled on the cholinergic system of the mammalian brain. AMAs aim to explicitly ascertain which dynamics of the environment are unpredictable, regardless of whether those dynamics are induced by the actions of the agent. This is achieved by generating separate forward predictions for the mean and variance of future states and reducing intrinsic rewards for those transitions with high aleatoric variance. We show AMAs are able to effectively circumvent action-dependent stochastic traps that immobilise conventional curiosity driven agents. The code for all experiments presented in this paper is open sourced: http://github.com/self-supervisor/Escaping-Stochastic-Traps-With-Aleatoric-Mapping-Agents.
