Highway Value Iteration Networks
Yuhui Wang, Weida Li, Francesco Faccio, Qingyuan Wu, Jürgen Schmidhuber
TL;DR
This work tackles the difficulty of long-horizon planning in Value Iteration Networks by introducing Highway Value Iteration Networks (highway VINs). By embedding highway value iteration into VINs and adding an aggregate gate, a value exploration (VE) module, and a filter gate, the authors enable effective training of hundreds of layers and improve planning across hundreds of steps. Empirical results on 2D maze navigation and 3D ViZDoom show highway VINs outperform traditional VINs and several deep baselines, especially as planning horizons lengthen; ablations confirm the necessity of VE and gating components. The approach also clarifies connections between highway RL and highway networks, offering a scalable, end-to-end framework for deep planning in complex environments.
Abstract
Value iteration networks (VINs) enable end-to-end learning for planning tasks by employing a differentiable "planning module" that approximates the value iteration algorithm. However, long-term planning remains a challenge because training very deep VINs is difficult. To address this problem, we embed highway value iteration -- a recent algorithm designed to facilitate long-term credit assignment -- into the structure of VINs. This improvement augments the "planning module" of the VIN with three additional components: 1) an "aggregate gate," which constructs skip connections to improve information flow across many layers; 2) an "exploration module," crafted to increase the diversity of information and gradient flow in spatial dimensions; 3) a "filter gate" designed to ensure safe exploration. The resulting novel highway VIN can be trained effectively with hundreds of layers using standard backpropagation. In long-term planning tasks requiring hundreds of planning steps, deep highway VINs outperform both traditional VINs and several advanced, very deep NNs.
