Unified token representations for sequential decision models
Zhuojing Tian, Yushu Chen
TL;DR
The paper addresses inefficiencies in transformer-based offline RL caused by triple-token (RTG, state, action) representations that inflate sequence length and compute. It introduces Unified Token Representation (UTR), which encodes each timestep with a single token, and develops two backbones, Unified Decision Transformer (UDT) and Unified Decision Conv (UDC), the latter using a Gated CNN-based decision module. The authors provide a theoretical argument and bounds for tighter generalization under merged tokens via Rademacher complexity, and substantiate the approach with experiments on MuJoCo and AntMaze showing competitive or superior performance with substantially reduced computation. This work demonstrates that UTR generalizes across architectures and offers a scalable foundation for future large decision models in offline RL. The practical impact lies in enabling efficient, real-time or resource-constrained decision-making without sacrificing performance.
Abstract
Transformers have demonstrated strong potential in offline reinforcement learning (RL) by modeling trajectories as sequences of return-to-go, states, and actions. However, existing approaches such as the Decision Transformer(DT) and its variants suffer from redundant tokenization and quadratic attention complexity, limiting their scalability in real-time or resource-constrained settings. To address this, we propose a Unified Token Representation (UTR) that merges return-to-go, state, and action into a single token, substantially reducing sequence length and model complexity. Theoretical analysis shows that UTR leads to a tighter Rademacher complexity bound, suggesting improved generalization. We further develop two variants: UDT and UDC, built upon transformer and gated CNN backbones, respectively. Both achieve comparable or superior performance to state-of-the-art methods with markedly lower computation. These findings demonstrate that UTR generalizes well across architectures and may provide an efficient foundation for scalable control in future large decision models.
