paper-with-me

홈 › Papers

A Tighter Convergence Proof of Reverse Experience Replay

2024-08-30 · Nan Jiang, Jinzhao Li, Yexiang Xue

In reinforcement learning, Reverse Experience Replay (RER) is a recently proposed algorithm that attains better sample complexity than the classic experience replay method. RER requires the learning algorithm to update the parameters through consecutive state-action-reward tuples in reverse order. However, the most recent theoretical analysis only holds for a minimal learning rate and short consecutive steps, which converge slower than those large learning rate algorithms without RER. In view of this theoretical and empirical gap, we provide a tighter analysis that mitigates the limitation on the learning rate and the length of consecutive steps. Furthermore, we show theoretically that RER converges with a larger learning rate and a longer sequence.

📄 PDF Abstract BibTeX arXiv:2408.16999

Code (1)

jiangnanhugo/RER-proof 공식 구현

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 제목 키워드 기반

Introspective Experience Replay: Look Back When Surprised

2022-06-07 · Ramnath Kumar, Dheeraj Nagaraj

In reinforcement learning (RL), experience replay-based sampling techniques play a crucial role in promoting convergence by eliminating spurious correlations. However, widely used methods such as uniform experience repla…

Q-Learningreinforcement-learningReinforcement Learning (RL)

Reverse Experience Replay

2019-10-19 · Egor Rotinov

This paper describes an improvement in Deep Q-learning called Reverse Experience Replay (also RER) that solves the problem of sparse rewards and helps to deal with reward maximizing tasks by sampling transitions successi…

Q-Learning

Online Target Q-learning with Reverse Experience Replay: Efficiently finding the Optimal Policy for Linear MDPs

2021-10-16 · ICLR 2022 4 · Naman Agarwal, Syomantak Chaudhuri, Prateek Jain, Dheeraj Nagaraj 외

Q-learning is a popular Reinforcement Learning (RL) algorithm which is widely used in practice with function approximation (Mnih et al., 2015). In contrast, existing theoretical results are pessimistic about Q-learning. …

Q-LearningReinforcement Learning (RL)

Replay For Safety

2021-12-08 · Liran Szlak, Ohad Shamir

Experience replay \citep{lin1993reinforcement, mnih2015human} is a widely used technique to achieve efficient use of data and improved performance in RL algorithms. In experience replay, past transitions are stored in a …

Q-Learning

Replay Memory as An Empirical MDP: Combining Conservative Estimation with Experience Replay

2023-05-01 · ICLR 2023 5 · Hongming Zhang, Chenjun Xiao, Han Wang, Jun Jin 외

Experience replay, which stores transitions in a replay memory for repeated use, plays an important role of improving sample efficiency in reinforcement learning. Existing techniques such as reweighted sampling, episodic…