paper-with-me

Papers

Offline Reinforcement Learning with Implicit Q-Learning

2021-10-12 · Ilya Kostrikov, Ashvin Nair, Sergey Levine

Offline reinforcement learning requires reconciling two conflicting aims: learning a policy that improves over the behavior policy that collected the dataset, while at the same time minimizing the deviation from the behavior policy so as to avoid errors due to distributional shift. This trade-off is critical, because most current offline reinforcement learning methods need to query the value of unseen actions during training to improve the policy, and therefore need to either constrain these actions to be in-distribution, or else regularize their values. We propose an offline RL method that never needs to evaluate actions outside of the dataset, but still enables the learned policy to improve substantially over the best behavior in the data through generalization. The main insight in our work is that, instead of evaluating unseen actions from the latest policy, we can approximate the policy improvement step implicitly by treating the state value function as a random variable, with randomness determined by the action (while still integrating over the dynamics to avoid excessive optimism), and then taking a state conditional upper expectile of this random variable to estimate the value of the best actions in that state. This leverages the generalization capacity of the function approximator to estimate the value of the best available action at a given state without ever directly querying a Q-function with this unseen action. Our algorithm alternates between fitting this upper expectile value function and backing it up into a Q-function. Then, we extract the policy via advantage-weighted behavioral cloning. We dub our method implicit Q-learning (IQL). IQL demonstrates the state-of-the-art performance on D4RL, a standard benchmark for offline reinforcement learning. We also demonstrate that IQL achieves strong performance fine-tuning using online interaction after offline initialization.

📄 PDF Abstract BibTeX arXiv:2110.06169

Code (17)

ikostrikov/implicit_q_learning 공식 구현 jax
rail-berkeley/rlkit 공식 구현 pytorch
BY571/Implicit-Q-Learning pytorch
Manchery/iql-pytorch pytorch
corl-team/CORL jax
dasgringuen/assetto_corsa_gym pytorch
gwthomas/iql-pytorch pytorch
linhlpv/Offline-and-OfflineOnline-RL pytorch
opendilab/DI-engine pytorch
orrivlin/implicit-q-learning pytorch
perrin-isir/afu jax
pytorch/rl/tree/main/examples/iql jax
runamu/compositional-conservatism pytorch
takuseno/d3rlpy pytorch
typoverflow/OfflineRL-Lib pytorch
yihaosun1124/OfflineRL-Kit pytorch
zzmtsvv/rl_task pytorch

Tasks

D4RLOffline RLQ-Learningreinforcement-learningReinforcement LearningReinforcement Learning (RL)

Methods 이 논문이 사용한 방법론

IQL 설명 없음

Similar Papers 제목 키워드 기반

Offline Multi-Agent Reinforcement Learning with Implicit Global-to-Local Value Regularization

2023-07-21 · NeurIPS 2023 11 · Xiangsen Wang, Haoran Xu, Yinan Zheng, Xianyuan Zhan

Offline reinforcement learning (RL) has received considerable attention in recent years due to its attractive capability of learning policies from offline datasets without environmental interactions. Despite some success…

ManagementMuJoCoMulti-agent Reinforcement LearningReinforcement Learning (RL)+2

Implicit Offline Reinforcement Learning via Supervised Learning

2022-10-21 · Alexandre Piche, Rafael Pardinas, David Vazquez, Igor Mordatch 외

Offline Reinforcement Learning (RL) via Supervised Learning is a simple and effective way to learn robotic skills from a dataset collected by policies of different expertise levels. It is as simple as supervised learning…

Offline RLreinforcement-learningReinforcement LearningReinforcement Learning (RL)

Believe What You See: Implicit Constraint Approach for Offline Multi-Agent Reinforcement Learning

2021-06-07 · NeurIPS 2021 12 · Yiqin Yang, Xiaoteng Ma, Chenghao Li, Zewu Zheng 외

Learning from datasets without interaction with environments (Offline Learning) is an essential step to apply Reinforcement Learning (RL) algorithms in real-world scenarios. However, compared with the single-agent counte…

Multi-agent Reinforcement LearningOffline RLQ-Learningreinforcement-learning+3

Hokoff: Real Game Dataset from Honor of Kings and its Offline Reinforcement Learning Benchmarks

2024-08-20 · NeurIPS 2023 11 · Yun Qu, Boyuan Wang, Jianzhun Shao, Yuhang Jiang 외

The advancement of Offline Reinforcement Learning (RL) and Offline Multi-Agent Reinforcement Learning (MARL) critically depends on the availability of high-quality, pre-collected offline datasets that represent real-worl…

Multi-agent Reinforcement LearningMulti-Task LearningOffline RLreinforcement-learning+2

Implicit Constraint-Aware Off-Policy Correction for Offline Reinforcement Learning

2025-06-16 · Ali Baheri

Offline reinforcement learning promises policy improvement from logged interaction data alone, yet state-of-the-art algorithms remain vulnerable to value over-estimation and to violations of domain knowledge such as mono…

Q-Learning