paper-with-me

Papers

Multi-Game Decision Transformers

2022-05-30 · Kuang-Huei Lee, Ofir Nachum, Mengjiao Yang, Lisa Lee, Daniel Freeman, Winnie Xu, Sergio Guadarrama, Ian Fischer, Eric Jang, Henryk Michalewski, Igor Mordatch

A longstanding goal of the field of AI is a method for learning a highly capable, generalist agent from diverse experience. In the subfields of vision and language, this was largely achieved by scaling up transformer-based models and training them on large, diverse datasets. Motivated by this progress, we investigate whether the same strategy can be used to produce generalist reinforcement learning agents. Specifically, we show that a single transformer-based model - with a single set of weights - trained purely offline can play a suite of up to 46 Atari games simultaneously at close-to-human performance. When trained and evaluated appropriately, we find that the same trends observed in language and vision hold, including scaling of performance with model size and rapid adaptation to new games via fine-tuning. We compare several approaches in this multi-game setting, such as online and offline RL methods and behavioral cloning, and find that our Multi-Game Decision Transformer models offer the best scalability and performance. We release the pre-trained models and code to encourage further research in this direction.

📄 PDF Abstract BibTeX arXiv:2205.15241

Code (1)

google-research/google-research/tree/master/multi_game_dt 공식 구현 jax

Tasks

Atari GamesOffline RL

Methods 이 논문이 사용한 방법론

Attention 설명 없음
Linear Layer A Linear Layer is a projection $\mathbf{XW + b}$.
Layer Normalization Unlike batch normalization, Layer Normalization directly estimates the normalization statistics from the summed inputs…
Softmax The Softmax output function transforms a previous layer's output into a vector of probabilities. It is commonly used for multiclass classification. Given an input vector $x$…
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…
Absolute Position Encodings Absolute Position Encodings are a type of position embeddings for [Transformer-based models] where positional encodings are…
Dropout Dropout is a regularization technique for neural networks that drops a unit (along with connections) at training time with a specified probability $p$ (a common value is…
Position-Wise Feed-Forward Layer 설명 없음

Similar Papers 제목 키워드 기반

Language Decision Transformers with Exponential Tilt for Interactive Text Environments

2023-02-10 · Nicolas Gontier, Pau Rodriguez, Issam Laradji, David Vazquez 외

Text-based game environments are challenging because agents must deal with long sequences of text, execute compositional actions using text and learn from sparse rewards. We address these challenges by proposing Language…

Offline RL

Leveraging Transformers for StarCraft Macromanagement Prediction

2021-10-11 · Muhammad Junaid Khan, Shah Hassan, Gita Sukthankar

Inspired by the recent success of transformers in natural language processing and computer vision applications, we introduce a transformer-based neural architecture for two key StarCraft II (SC2) macromanagement tasks: g…

PredictionStarcraftStarcraft IITransfer Learning

Reinforcement Learning-based Token Pruning in Vision Transformers: A Markov Game Approach

2025-03-30 · Chenglong Lu, Shen Liang, Xuewei Wang, Wei Wang

Vision Transformers (ViTs) have computational costs scaling quadratically with the number of tokens, calling for effective token pruning policies. Most existing policies are handcrafted, lacking adaptivity to varying inp…

Decision MakingReinforcement Learning (RL)Sequential Decision Making

GPT in Game Theory Experiments

2023-05-09 · Fulin Guo

This paper explores the use of Generative Pre-trained Transformers (GPT) in strategic game experiments, specifically the ultimatum game and the prisoner's dilemma. I designed prompts and architectures to enable GPT to un…

Fairness

Deep Reinforcement Learning with Swin Transformers

2022-06-30 · Li Meng, Morten Goodwin, Anis Yazidi, Paal Engelstad

Transformers are neural network models that utilize multiple layers of self-attention heads and have exhibited enormous potential in natural language processing tasks. Meanwhile, there have been efforts to adapt transfor…

Atari GamesDeep Reinforcement Learningreinforcement-learningReinforcement Learning+1