LGJan 13, 2024

BP(λ): Online Learning via Synthetic Gradients

arXiv:2401.07044v1h-index: 5Trans. Mach. Learn. Res.
Originality Incremental advance
AI Analysis

This work addresses the computational inefficiency of BPTT in recurrent neural networks, offering an incremental improvement for online learning scenarios.

The paper tackles the problem of training recurrent neural networks without backpropagation through time (BPTT) by proposing accumulate BP(λ), a fully online method for learning synthetic gradients that controls bias using temporal difference errors and eligibility traces. The result shows empirical outperformance over previous methods in various tasks, especially for capturing longer timescales.

Training recurrent neural networks typically relies on backpropagation through time (BPTT). BPTT depends on forward and backward passes to be completed, rendering the network locked to these computations before loss gradients are available. Recently, Jaderberg et al. proposed synthetic gradients to alleviate the need for full BPTT. In their implementation synthetic gradients are learned through a mixture of backpropagated gradients and bootstrapped synthetic gradients, analogous to the temporal difference (TD) algorithm in Reinforcement Learning (RL). However, as in TD learning, heavy use of bootstrapping can result in bias which leads to poor synthetic gradient estimates. Inspired by the accumulate $\mathrm{TD}(λ)$ in RL, we propose a fully online method for learning synthetic gradients which avoids the use of BPTT altogether: accumulate $BP(λ)$. As in accumulate $\mathrm{TD}(λ)$, we show analytically that accumulate $\mathrm{BP}(λ)$ can control the level of bias by using a mixture of temporal difference errors and recursively defined eligibility traces. We next demonstrate empirically that our model outperforms the original implementation for learning synthetic gradients in a variety of tasks, and is particularly suited for capturing longer timescales. Finally, building on recent work we reflect on accumulate $\mathrm{BP}(λ)$ as a principle for learning in biological circuits. In summary, inspired by RL principles we introduce an algorithm capable of bias-free online learning via synthetic gradients.

Foundations

The foundational work for this paper's niche, ranked by how specifically the neighbourhood builds on it — not by global fame.

Your Notes