Paper Overview
Field: Machine Learning Authors: Akarsh Kumar, Phillip Isola Published: 2025-06-11 arXiv: 2506.08254
Key Idea
Training RNNs requires assigning credit across long sequences. Standard backpropagation through time (BPTT) is sequential in time and suffers from vanishing/exploding gradients. The authors propose Supervised Memory Training (SMT), which sidesteps recurrent credit propagation entirely by reducing RNN training to supervised learning on one-step memory transition labels.
How SMT Works
- A Transformer-based encoder is trained to predict state targets, generating memory labels.
- These labels retain only the historical information needed to predict the future.
- By decoupling *what* the memory should contain from *how* it should be updated, SMT removes the need for recurrent credit propagation.
- Enables parallel-in-time RNN training, addressing BPTT's limited parallelism.
- Outperforms BPTT on language modeling and pixel sequence modeling tasks.
Results
Full Abstract (translated)
Training RNNs requires assigning credit across long sequences. Standard BPTT is sequential in time and suffers from vanishing/exploding gradients. We propose Supervised Memory Training (SMT), which sidesteps recurrent credit propagation entirely by reducing RNN training to supervised learning on one-step memory transition labels.
---
*Auto-collected on 2025-06-11.*