paper-with-me

Papers

Improving Token-Based World Models with Parallel Observation Prediction

2024-02-08 · Lior Cohen, Kaixin Wang, Bingyi Kang, Shie Mannor

Motivated by the success of Transformers when applied to sequences of discrete symbols, token-based world models (TBWMs) were recently proposed as sample-efficient methods. In TBWMs, the world model consumes agent experience as a language-like sequence of tokens, where each observation constitutes a sub-sequence. However, during imagination, the sequential token-by-token generation of next observations results in a severe bottleneck, leading to long training times, poor GPU utilization, and limited representations. To resolve this bottleneck, we devise a novel Parallel Observation Prediction (POP) mechanism. POP augments a Retentive Network (RetNet) with a novel forward mode tailored to our reinforcement learning setting. We incorporate POP in a novel TBWM agent named REM (Retentive Environment Model), showcasing a 15.4x faster imagination compared to prior TBWMs. REM attains superhuman performance on 12 out of 26 games of the Atari 100K benchmark, while training in less than 12 hours. Our code is available at \url{https://github.com/leor-c/REM}.

📄 PDF Abstract BibTeX arXiv:2402.05643

Code (1)

leor-c/rem 공식 구현 pytorch

Tasks

GPUPrediction

Methods 이 논문이 사용한 방법론

Dense Connections Dense Connections, or Fully Connected Connections, are a type of layer in a deep neural network that use a linear operation where every input is connected to every output…
Convolution A convolution is a type of matrix operation, consisting of a kernel, a small matrix of weights, that slides over input data performing element-wise multiplication with the…
Q-Learning Q-Learning is an off-policy temporal difference control algorithm: $$Q\left(S\_{t}, A\_{t}\right) \leftarrow Q\left(S\_{t}, A\_{t}\right) + \alpha\left[R_{t+1} +…
DQN A DQN, or Deep Q-Network, approximates a state-value function in a Q-Learning framework with a neural network. In the Atari…
REM Random Ensemble Mixture (REM) is an easy to implement extension of DQN inspired by Dropout.…

Similar Papers 제목 키워드 기반

Discrete-WAM: Unified Discrete Vision-Action Token Editing for World-Policy Learning

2026-06-04 · Ziyang Yao, Haochen Liu, Yuncheng Jiang, Zeyu Zhu 외 arxiv

Autonomous driving requires reasoning about how ego actions shape future world evolution, rather than merely mapping observations to actions. However, most end-to-end methods rely on direct state-to-action imitation, whi…

Autonomous Driving

Copilot4D: Learning Unsupervised World Models for Autonomous Driving via Discrete Diffusion

2023-11-02 · Lunjun Zhang, Yuwen Xiong, Ze Yang, Sergio Casas 외

Learning world models can teach an agent how the world works in an unsupervised manner. Even though it can be viewed as a special case of sequence modeling, progress for scaling world models on robotic applications such …

Autonomous Driving

Masked Generative Policy for Robotic Control

2025-12-09 · Lipeng Zhuang, Shiyu Fan, Florent P. Audonnet, Yingdong Ru 외 arxiv

We present Masked Generative Policy (MGP), a novel framework for visuomotor imitation learning. We represent actions as discrete tokens, and train a conditional masked transformer that generates tokens in parallel and th…

Parallelized Autoregressive Visual Generation

2024-12-19 · CVPR 2025 1 · Yuqing Wang, Shuhuai Ren, Zhijie Lin, Yujin Han 외

Autoregressive models have emerged as a powerful approach for visual generation but suffer from slow inference speed due to their sequential token-by-token prediction process. In this paper, we propose a simple yet effec…

Video Generation

From Sequential to Spatial: Reordering Autoregression for Efficient Visual Generation

2025-12-31 · Siyang Wang, Hanting Li, Wei Li, Jie Hu 외 arxiv

Inspired by the remarkable success of autoregressive models in language modeling, this paradigm has been widely adopted in visual generation. However, the sequential token-by-token decoding mechanism inherent in traditio…