Methods › Reinforcement Learning › Replay Memory › Prioritized Experience Replay
Prioritized Experience Replay
Introduced by Tom Schaul et al. in Prioritized Experience Replay
archive 2025-07-28 Description, source and code snippet are the archive's method entry.
Prioritized Experience Replay is a type of experience replay in reinforcement learning where we more frequently replay transitions with high expected learning progress, as measured by the magnitude of their temporal-difference (TD) error. This prioritization can lead to a loss of diversity, which is alleviated with stochastic prioritization, and introduce bias, which can be corrected with importance sampling.
The stochastic sampling method interpolates between pure greedy prioritization and uniform random sampling. The probability of being sampled is ensured to be monotonic in a transition's priority, while guaranteeing a non-zero probability even for the lowest-priority transition. Concretely, define the probability of sampling transition i as
P(i) = (pᵢ^α)/(∑ₖ pₖ^α)
where pᵢ > 0 is the priority of transition i. The exponent α determines how much prioritization is used, with α=0 corresponding to the uniform case.
Prioritized replay introduces bias because it changes this distribution in an uncontrolled fashion, and therefore changes the solution that the estimates will converge to. We can correct this bias by using importance-sampling (IS) weights:
wᵢ = (1/N·1/(P(i)))^β
that fully compensates for the non-uniform probabilities P(i) if β= 1. These weights can be folded into the Q-learning update by using wᵢδᵢ instead of δᵢ - weighted IS rather than ordinary IS. For stability reasons, we always normalize weights by 1/maxᵢwᵢ so that they only scale the update downwards.
The two types of prioritization are proportional based, where pᵢ = |δᵢ| + ϵ and rank-based, where pᵢ = 1/(rank(i)), the latter where rank(i) is the rank of transition i when the replay memory is sorted according to |δᵢ|, For proportional based, hyperparameters used were α= 0.7, β₀ = 0.5. For the rank-based variant, hyperparameters used were α= 0.6, β₀ = 0.4.
Papers archive 2025-07-28
30 shown of 138, newest first. Repository counts are the archive's code-links table. A Syntology line states what Syntology ran from that paper's harvested code; it is per sample and not a correctness claim.
-
CAWR: Corruption-Averse Advantage-Weighted Regression for Robust Policy Optimization 18 Jun 2025 · 1 repository · arXiv:2506.15654
-
Calibrated Value-Aware Model Learning with Stochastic Environment Models 28 May 2025 · 0 repositories · arXiv:2505.22772
-
Online Learning-based Adaptive Beam Switching for 6G Networks: Enhancing Efficiency and Resilience 12 May 2025 · 1 repository · arXiv:2505.08032
-
Graph Based Deep Reinforcement Learning Aided by Transformers for Multi-Agent Cooperation 11 Apr 2025 · 0 repositories · arXiv:2504.08195
-
PER-DPP Sampling Framework and Its Application in Path Planning 10 Mar 2025 · 0 repositories · arXiv:2503.07411
-
OptionZero: Planning with Learned Options 23 Feb 2025 · 1 repository · arXiv:2502.16634Syntology ran 7 of 8 samples · 1 unverified · 8 pointer-only (licence)
-
Reinforcement Learning in Strategy-Based and Atari Games: A Review of Google DeepMinds Innovations 14 Feb 2025 · 0 repositories · arXiv:2502.10303
-
Enhancing UAV Path Planning Efficiency Through Accelerated Learning 17 Jan 2025 · 0 repositories · arXiv:2501.10141
-
SALE-Based Offline Reinforcement Learning with Ensemble Q-Networks 7 Jan 2025 · 0 repositories · arXiv:2501.03676
-
Evaluating World Models with LLM for Decision Making 13 Nov 2024 · 0 repositories · arXiv:2411.08794
-
Evaluating Robustness of Reinforcement Learning Algorithms for Autonomous Shipping 7 Nov 2024 · 0 repositories · arXiv:2411.04915
-
Interpreting the Learned Model in MuZero Planning 7 Nov 2024 · 0 repositories · arXiv:2411.04580
-
Beyond The Rainbow: High Performance Deep Reinforcement Learning on a Desktop PC 6 Nov 2024 · 3 repositories · arXiv:2411.03820Syntology ran 13 of 25 samples · 12 unverified · 21 pointer-only (licence)
-
Enhancing LLM Agents for Code Generation with Possibility and Pass-rate Prioritized Experience Replay 16 Oct 2024 · 0 repositories · arXiv:2410.12236
-
Learning in complex action spaces without policy gradients 8 Oct 2024 · 0 repositories · arXiv:2410.06317
-
Investigating the Interplay of Prioritized Replay and Generalization 12 Jul 2024 · 0 repositories · arXiv:2407.09702
-
ROER: Regularized Optimal Experience Replay 4 Jul 2024 · 1 repository · arXiv:2407.03995
-
Combining AI Control Systems and Human Decision Support via Robustness and Criticality 3 Jul 2024 · 0 repositories · arXiv:2407.03210
-
Physics-informed Imitative Reinforcement Learning for Real-world Driving 18 Jun 2024 · 0 repositories · arXiv:2407.02508
-
Efficient Monte Carlo Tree Search via On-the-Fly State-Conditioned Action Abstraction 2 Jun 2024 · 1 repository · arXiv:2406.00614
-
Shared-unique Features and Task-aware Prioritized Sampling on Multi-task Reinforcement Learning 2 Jun 2024 · 0 repositories · arXiv:2406.00761
-
Efficient Multi-agent Reinforcement Learning by Planning 20 May 2024 · 1 repository · arXiv:2405.11778
-
ReZero: Boosting MCTS-based Algorithms by Backward-view and Entire-buffer Reanalyze 25 Apr 2024 · 1 repository · arXiv:2404.16364
-
Laser Learning Environment: A new environment for coordination-critical multi-agent tasks 4 Apr 2024 · 1 repository · arXiv:2404.03596
-
An Improved Strategy for Blood Glucose Control Using Multi-Step Deep Reinforcement Learning 12 Mar 2024 · 0 repositories · arXiv:2403.07566
-
Reinforcement learning to maximise wind turbine energy generation 17 Feb 2024 · 0 repositories · arXiv:2402.11384
-
Directly Attention Loss Adjusted Prioritized Experience Replay 24 Nov 2023 · 0 repositories · arXiv:2311.14390
-
Multi-Timescale Control and Communications with Deep Reinforcement Learning -- Part II: Control-Aware Radio Resource Allocation 19 Nov 2023 · 0 repositories · arXiv:2311.11280
-
Advancing Algorithmic Trading: A Multi-Technique Enhancement of Deep Q-Network Models 9 Nov 2023 · 0 repositories · arXiv:2311.05743
-
Mitigating Estimation Errors by Twin TD-Regularized Actor and Critic for Deep Reinforcement Learning 7 Nov 2023 · 0 repositories · arXiv:2311.03711
Tasks archive 2025-07-28
20 shown of 82 tasks the archive attaches to papers tagged with this method, by distinct papers. A task without a page in the catalog is plain text.
Usage over time archive 2025-07-28
Components: the archive holds no method-to-method composition, so PwC's Components table cannot be rebuilt; the Papers list carries no Results column for the same reason (the archive does not join its leaderboard rows to method tags).
Categories archive 2025-07-28
Report a problem or propose a change · a person checks every report against the paper or source before anything changes; decisions are listed on /corrections