paper-with-me

Papers

Remember and Forget for Experience Replay

2018-07-16 · ICLR 2019 5 · Guido Novati, Petros Koumoutsakos

Experience replay (ER) is a fundamental component of off-policy deep reinforcement learning (RL). ER recalls experiences from past iterations to compute gradient estimates for the current policy, increasing data-efficiency. However, the accuracy of such updates may deteriorate when the policy diverges from past behaviors and can undermine the performance of ER. Many algorithms mitigate this issue by tuning hyper-parameters to slow down policy changes. An alternative is to actively enforce the similarity between policy and the experiences in the replay memory. We introduce Remember and Forget Experience Replay (ReF-ER), a novel method that can enhance RL algorithms with parameterized policies. ReF-ER (1) skips gradients computed from experiences that are too unlikely with the current policy and (2) regulates policy changes within a trust region of the replayed behaviors. We couple ReF-ER with Q-learning, deterministic policy gradient and off-policy gradient methods. We find that ReF-ER consistently improves the performance of continuous-action, off-policy RL on fully observable benchmarks and partially observable flow control problems.

📄 PDF Abstract BibTeX arXiv:1807.05827

Code (2)

cselab/smarties 공식 구현 pytorch
https://gitlab.com/stchrist/ViscousThreads

Tasks

Deep Reinforcement LearningPolicy Gradient MethodsQ-LearningReinforcement LearningReinforcement Learning (RL)

Methods 이 논문이 사용한 방법론

Experience Replay Experience Replay is a replay memory technique used in reinforcement learning where we store the agent’s experiences at each time-step, $e\_{t} = \left(s\_{t}, a\_{t}, r\_{t},…

Similar Papers 제목 키워드 기반

Continual Learning: Tackling Catastrophic Forgetting in Deep Neural Networks with Replay Processes

2020-07-01 · Timothée Lesort

Humans learn all their life long. They accumulate knowledge from a sequence of learning experiences and remember the essential concepts without forgetting what they have learned previously. Artificial neural networks str…

Continual Learning

Remember and Forget Experience Replay for Multi-Agent Reinforcement Learning

2022-03-24 · Pascal Weber, Daniel Wälchli, Mustafa Zeqiri, Petros Koumoutsakos

We present the extension of the Remember and Forget for Experience Replay (ReF-ER) algorithm to Multi-Agent Reinforcement Learning (MARL). ReF-ER was shown to outperform state of the art algorithms for continuous control…

continuous-controlContinuous ControlMulti-agent Reinforcement LearningOpenAI Gym+3

Replay to Remember (R2R): An Efficient Uncertainty-driven Unsupervised Continual Learning Framework Using Generative Replay

2025-05-07 · Sriram Mandalika, Harsha Vardhan, Athira Nambiar

Continual Learning entails progressively acquiring knowledge from new data while retaining previously acquired knowledge, thereby mitigating ``Catastrophic Forgetting'' in neural networks. Our work presents a novel uncer…

Continual Learning

Understanding Catastrophic Forgetting and Remembering in Continual Learning with Optimal Relevance Mapping

2021-02-22 · Prakhar Kaushik, Alex Gain, Adam Kortylewski, Alan Yuille

Catastrophic forgetting in neural networks is a significant problem for continual learning. A majority of the current methods replay previous data during training, which violates the constraints of an ideal continual lea…

Continual Learning

Prioritized Experience Replay

2015-11-18 · Tom Schaul, John Quan, Ioannis Antonoglou, David Silver

Experience replay lets online reinforcement learning agents remember and reuse experiences from the past. In prior work, experience transitions were uniformly sampled from a replay memory. However, this approach simply r…

Atari Gamesreinforcement-learningReinforcement LearningReinforcement Learning (RL)