REVIEW 3 major objections 9 minor 169 references
A deep RL agent can match a million-transition replay buffer with 10–50× less storage by keeping only chained n-step endpoints and updating them with expectile Sarsa.
Reviewed by Pith at T0; open to challenge. T0 means a machine referee read the full paper against a public rubric. the ladder, T0–T4 →
T0 review · grok-4.5
2026-07-31 00:38 UTC pith:N4A3H3FD
load-bearing objection Clean failure-mode diagnosis plus a simple two-buffer fix that actually matches large-buffer Atari/Pinball at 10–50× less storage; theory is honest about its deterministic limit. the 3 major comments →
Endpoint Replay: Compressing the Recency Buffer in Deep Reinforcement Learning
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
Core claim
Naive coresets of isolated transitions create unanchored bootstrap targets—states and actions that are never updated—so value estimates drift and control performance collapses. Storing instead the endpoints of chained n-step sequences keeps every bootstrap target inside the buffer, and pairing those updates with an n-step expectile Sarsa loss removes the pessimistic bias of older multi-step returns. With that construction, a buffer one-tenth to one-fiftieth the usual size matches a standard million-transition recency buffer.
What carries the argument
Endpoint Replay: a small recency buffer plus a coreset of chained n-step transitions updated by n-step Expectile Sarsa. The chain anchors every bootstrap state and action; the expectile loss (τ > 0.5) counteracts multi-step pessimism from older policies.
Load-bearing premise
The proof that policy iteration reaches the optimal policy holds only when the environment is deterministic; with high reward noise the expectile can chase lucky outcomes instead of better actions.
What would settle it
In a controlled control setting, replace a large buffer with an equal-sized coreset of isolated one-step transitions versus chained n-step endpoints; if bootstrap-target error keeps rising and return collapses only for the isolated coreset, the unanchored-target diagnosis is confirmed.
If this is right
- Production DQN-style agents can cut replay memory by 10–50× while retaining large-buffer learning curves.
- Any coreset or prototype selection that stores isolated transitions is at risk of the same unanchored-bootstrap failure.
- n-step expectile operators are sound Bellman operators and induce an ordered family of value functions indexed by n.
- Under deterministic dynamics, greedifying on n-step expectile values converges to the ordinary optimal policy.
Where Pith is reading between the lines
- The same anchoring idea could be applied inside prioritized or generative replay, not only uniform FIFO coresets.
- Decaying τ toward 0.5 over training would give a practical way to retain early multi-step optimism while recovering mean returns in noisier domains.
- If unanchored targets are the dominant failure mode, distance-based prototype selection without chaining should systematically underperform Endpoint Replay even when coverage looks good.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper asks whether the standard 1M-transition FIFO replay buffer in DQN-style algorithms can be compressed 10–50× without performance loss. It identifies a failure mode of naive coreset compression: isolated transitions yield "unanchored" bootstrap targets whose state-action values are never directly updated, and demonstrates this in controlled prediction (Fig. 1) and control (Fig. 2) experiments. The proposed fix, Endpoint Replay, keeps a small recency buffer plus a coreset of chained n-step transitions (so every bootstrap endpoint is itself updated), trained with an n-step Expectile Sarsa update (τ=0.7) to counteract the pessimistic bias of n-step targets from stale policies. Theory: the n-step expectile Bellman operator is a γⁿ-contraction (Thm 1), n-step expectile values are ordered in n (Thm 2), policy iteration converges under a monotonic-greedification assumption (Thm 3), and to the optimal policy under deterministic dynamics (Cor. 1); Prop. 1 shows expectile greedification can strictly reduce expected return. Empirically, Endpoint Replay matches a 10–50× larger recency buffer in Pinball (100 seeds) and 12 Atari games (10 seeds, sign tests), beating equal-sized buffers, reservoir coresets, and MeDQN; ablations attribute gains to state anchoring and the expectile loss.
Significance. If the results hold, this is a practically useful contribution: an order-of-magnitude reduction in replay memory with maintained performance matters for deployment and for scaling studies, and the "unanchored bootstrap target" diagnosis is a clean, previously unrecognized conceptual point backed by direct error measurements rather than only return curves. Strengths worth naming: publicly released code; unusually careful experimental hygiene for the area (100-seed Pinball runs with bootstrap CIs, two-stage tuning for the MeDQN baseline, sign tests, per-game breakdowns); controlled experiments that measure bootstrap-target error directly; and honest theory, including a counterexample (Prop. 1) against the authors' own update. The n-step expectile operator analysis (contraction for n≥1, ordering in n) is, to my knowledge, new. The main risks are a prose/pseudocode inconsistency about what the coreset actually contains, an untested robustness boundary for the expectile under stochastic dynamics, and a gap in the policy-iteration convergence proof.
major comments (3)
- [§3.3 vs. Algorithm 1 (App. 8), lines 11–17] The prose describes a stride-n chain: the lag buffer fills with n transitions, one n-step summary is emitted, and 'the lag buffer would simply reset' (and resets after k steps on termination), giving D_c = {(s_0,...s_n),(s_n,...s_2n),...} as in §3.1. The pseudocode instead pops only the FIRST transition from D_lag after emitting a summary and never resets: this implements a stride-1 sliding window in which every evicted transition generates an overlapping n-step summary. The two versions differ materially. Under stride-1, a 90k coreset covers ~90k environment steps of history, not ~900k, so the abstract's claim of 'an effective memory horizon comparable to a standard large buffer' no longer follows; anchoring also becomes trivial (every state is a start state) rather than a consequence of chaining. Additionally, line 14 computes g with constant γ^i and ignores the stored per-transition (
- [§3.2 and §5 (Table 3, Figs. 4c/d, 7, 8)] The mechanism attribution for the expectile is underdetermined by the evidence. The paper itself states the failure mode: with stochastic dynamics the expectile 'can chase environment stochasticity rather than ... actions that result in higher expected return' (§3.2), Corollary 1 gives optimality only under deterministic dynamics, and Proposition 1 constructs a case where expectile greedification strictly lowers expected return. Yet the headline benchmark deliberately injects stochasticity: sticky actions with repeat probability 0.25 in all 12 games (Table 3), and Ms. Pac-Man selected for 'high variance induced by unpredictable ghost movements'. The No-Expectile ablation is run only at this fixed noise level, so it cannot distinguish 'expectile corrects stale-policy pessimism' from 'expectile is generic optimism that happens to help here'. τ=0.7 is used everywhere with no reported sweep,
- [App. 7.3, Theorem 3 (and Corollary 1)] The proof of Theorem 3 establishes monotone, bounded improvement of V^{(n)}_{τ,π_t}, hence convergence to a fixed point of the greedification operator — but the conclusion that the limit is the OPTIMAL expectile policy ('will stop at some π*_τ that has the largest V') does not follow. In classical policy iteration the fixed-point argument gives V = max_{π'} T_{π'}V because improvement maximizes over policies; here greedification produces a single π′ satisfying Definition 2, so a fixed point only satisfies T_{π'}V_π = V_π for that particular π′, which need not be globally optimal without an additional argument that every suboptimal policy admits a strictly improving monotonic expectile greedy successor. Relatedly, convergence of π_t itself (rather than of the values) is asserted, and Assumption 1 is acknowledged to be unverified for the ε-greedy policy the algorithm actually uses — so the
minor comments (9)
- [App. 14, Figure 10] Caption says '100k buffer setting' but the legend and content are the 20k (50×) setting; also the caption says 'ablations' while showing baselines.
- [§3.1, Figure 1] Caption states 'Average over 100 seeds' while the text describes 10 datasets; the light lines are described as 10 random seeds. Please reconcile.
- [§5 / App. 12] Min–max normalization mapping the worst seed to 0 and best seed to 1 per game is sensitive to single-seed outliers and discards effect magnitude; consider reporting IQM with stratified bootstrap CIs (rliable-style) alongside, at least in the supplement.
- [App. 13] The sign test treats 120 game–seed pairs as independent; pairs within a game share game-level effects, which can inflate significance. Aggregating per game first (12 pairs) or a hierarchical test would be more conservative.
- [§5] MeDQN is excluded from Atari because it failed in Pinball, but its Pinball failure is attributed to invalid random states in a constrained domain — a domain-specific reason. The contribution claim 'outperforms MeDQN' therefore rests on a single, unfavorable setting; either soften the claim or include one Atari data point.
- [Abstract / Fig. 3d] The abstract says the method 'matches the performance of traditional large buffers'; in the 50× setting it does not quite reach the large baseline (5/12 games at parity). Qualify the claim by compression level.
- [§3.3 / §5] The 7:1 minibatch mix and n=10 are described as 'found effective' with no sensitivity results; even a coarse sweep in Pinball would help practitioners.
- [App. 7.2, Theorem 2] The ordering V^{(n)} ≥ V^{(a·n)} is stated for τ ≥ 1/2; a one-line remark on whether the ordering reverses for τ < 1/2 would complete the picture.
- [Typos] §5 'We preformed'; §4 'boostrap'; App. 7.1 'analagously'; §3.1 'a nearby states t'; Broader Impact 'bare little resemblance' (→ 'bear'). §2 'from early learn' (→ 'early learning').
Circularity Check
No significant circularity: theory is self-contained contraction/policy-iteration analysis; empirical claims are scored on external environment returns against independent baselines.
full rationale
The paper's load-bearing claims do not reduce to their inputs by construction. The n-step expectile action-values are introduced as a fixed-point definition Q^{(n)}_{τ,π}=e_τ(G^{(n)}(Q^{(n)}_{τ,π})), which is the standard Bellman-style recursion; existence and uniqueness follow from an explicit γ^n-contraction proof (Theorem 1) that does not bake in target performance. Ordering (Theorem 2) and policy-iteration convergence (Theorem 3, Corollary 1) are derived from monotonicity/subadditivity of expectiles under stated assumptions (including deterministic dynamics for optimality). None of these steps fit a parameter to data and rename the fit a prediction, import a uniqueness theorem from overlapping authors, or smuggle an ansatz via self-citation. Empirically, Endpoint Replay is evaluated on held-out Pinball and Atari returns against large-buffer DDQN, equal-sized recency buffers, reservoir coresets, and MeDQN; ablations isolate anchoring and the expectile loss on the same external metrics. Self-citations (e.g., Panahi et al. 2024, Patterson et al. 2024, Lo et al. 2024) supply environment or methodology context and are not load-bearing for the compression or soundness claims. The known limitation that optimality holds only under deterministic dynamics is a correctness/scope issue, not circularity. Score 0 is therefore appropriate.
Axiom & Free-Parameter Ledger
free parameters (5)
- expectile level τ =
0.7
- chain length n =
10
- recency/coreset split and minibatch mix =
90-10 capacities; 28:4 batch mix
- Pinball learning rate =
0.002
- MeDDQN regularization weight λ =
2
axioms (5)
- domain assumption Environment is an MDP with bounded rewards; episodic γ set to 0 at termination (White 2017).
- standard math n-step expectile Bellman operator is a γ^n-contraction in sup norm, hence has a unique fixed point (Theorem 1).
- ad hoc to paper Policy class is compact and closed under a monotonic expectile greedification operator (Assumption 1 / Definition 2).
- domain assumption Deterministic transitions and rewards for Corollary 1 (expectile PI recovers the optimal expected-return policy).
- domain assumption Double DQN / Adam / Dopamine-style Atari protocol is a valid performance yardstick for buffer compression.
invented entities (3)
-
Unanchored bootstrap targets
independent evidence
-
n-step expectile action-values Q^{(n)}_{τ,π}
no independent evidence
-
Endpoint Replay (recency + lag + chained n-step coreset)
independent evidence
Cite this review
Pith. "Pith review of Endpoint Replay: Compressing the Recency Buffer in Deep Reinforcement Learning." pith.science (2026). https://pith.science/paper/N4A3H3FD
@misc{pith2026260725123,
author = {Pith},
title = {Pith review of: Endpoint Replay: Compressing the Recency Buffer in Deep Reinforcement Learning},
year = {2026},
howpublished = {\url{https://pith.science/paper/N4A3H3FD}},
note = {Machine review of arXiv:2607.25123}
}
read the original abstract
Experience replay remains one of the most practical and useful algorithmic tools in the deep reinforcement learning (DRL) toolbox. Aside from the limited success of prioritized replay and specialized approaches for large asynchronous systems, most DRL algorithms make use of a large, uniformly sampled recency buffer---even the size, one million, remains unchanged. Could we store less data, reduce redundancy, or more effectively chain experience together to speed up value propagation and still retain the performance of large buffers? In this paper, we investigate a simple compression approach that stores representative transitions derived from the end-points of a chain of connected $n$-step sequences. By curating these end-points in a smaller recency buffer, our method maintains an effective memory horizon comparable to a standard large buffer while requiring an order of magnitude less storage. Through empirical evaluation, we demonstrate that this approach prevents the systematic bias inherent in naive compression strategies and matches the performance of traditional large buffers in the Pinball environment and the Atari 2600 benchmark.
Figures
Reference graph
Works this paper leans on
-
[2]
Neural computation , volume=
Risk-sensitive reinforcement learning , author=. Neural computation , volume=. 2014 , publisher=
2014
-
[3]
Advances in Neural Information Processing Systems , volume=
The nature of temporal difference errors in multi-step distributional reinforcement learning , author=. Advances in Neural Information Processing Systems , volume=
-
[5]
K-percent Evaluation for Lifelong RL , author=
-
[6]
International Conference on Learning Representations , year=
Distributed Distributional Deterministic Policy Gradients , author=. International Conference on Learning Representations , year=
-
[7]
Advances in Neural Information Processing Systems , volume=
State chrono representation for enhancing generalization in reinforcement learning , author=. Advances in Neural Information Processing Systems , volume=
-
[8]
arXiv preprint arXiv:2507.09087 , year=
Deep reinforcement learning with gradient eligibility traces , author=. arXiv preprint arXiv:2507.09087 , year=
-
[9]
Proceedings of the AAAI conference on artificial intelligence , volume=
Using hindsight to anchor past knowledge in continual learning , author=. Proceedings of the AAAI conference on artificial intelligence , volume=
-
[10]
ArXiv , year=
The Laplacian in RL: Learning Representations with Efficient Approximations , author=. ArXiv , year=
-
[11]
International Conference on Machine Learning , year=
Towards Sustainable Learning: Coresets for Data-efficient Deep Learning , author=. International Conference on Machine Learning , year=
-
[12]
IEEE Transactions on Signal Processing , year=
Analyzing Sparse Dictionaries for Online Learning With Kernels , author=. IEEE Transactions on Signal Processing , year=
-
[13]
Journal of Machine Learning Research , volume=
Empirical design in reinforcement learning , author=. Journal of Machine Learning Research , volume=
-
[14]
The Thirteenth International Conference on Learning Representations , year=
Prioritized Generative Replay , author=. The Thirteenth International Conference on Learning Representations , year=
-
[15]
International Conference on Machine Learning , pages=
Large Batch Experience Replay , author=. International Conference on Machine Learning , pages=. 2022 , organization=
2022
-
[16]
Proceedings of the Thirty-Fourth International Joint Conference on Artificial Intelligence , pages=
Efficient diversity-based experience replay for deep reinforcement learning , author=. Proceedings of the Thirty-Fourth International Joint Conference on Artificial Intelligence , pages=
-
[17]
IEEE Transactions on Signal Processing , year=
The kernel recursive least-squares algorithm , author=. IEEE Transactions on Signal Processing , year=
-
[18]
AAAI Conference on Artificial Intelligence , year=
Deep Reinforcement Learning with Double Q-Learning , author=. AAAI Conference on Artificial Intelligence , year=
-
[19]
2022 , journaltitle =
A Generalized Projected Bellman Error for Off-Policy Value Estimation in Reinforcement Learning , author =. 2022 , journaltitle =
2022
-
[20]
nature , volume=
Human-level control through deep reinforcement learning , author=. nature , volume=. 2015 , publisher=
2015
-
[21]
Proceedings of the Ninth National Conference on Artificial Intelligence - Volume 2 , pages =
Lin, Long-Ji , title =. Proceedings of the Ninth National Conference on Artificial Intelligence - Volume 2 , pages =. 1991 , publisher =
1991
-
[23]
and Barto, Andrew G
Sutton, Richard S. and Barto, Andrew G. , publisher=. Reinforcement Learning:. 1998 , address=
1998
-
[24]
R. S. Sutton and D. McAllester and S. Singh and Y. Mansour. Policy Gradient Methods for Reinforcement Learning with Function Approximation. Advances in Neural Information Processing Systems 12. 2000
2000
-
[25]
R. J. Williams. Simple Statistical Gradient-Following Algorithms for Connectionist Reinforcement Learning. Machine Learning. 1992
1992
-
[26]
International Conference on Learning Representations , year=
Offline Reinforcement Learning with Implicit Q-Learning , author=. International Conference on Learning Representations , year=
-
[27]
, title =
Indyk, Piotr and Mahabadi, Sepideh and Mahdian, Mohammad and Mirrokni, Vahab S. , title =. Proceedings of the 33rd ACM SIGMOD-SIGACT-SIGART Symposium on Principles of Database Systems , pages =. 2014 , publisher =
2014
-
[28]
Journal of Machine Learning Research (JMLR) , volume =
Temporal Abstraction in Reinforcement Learning with the Successor Representation , author =. Journal of Machine Learning Research (JMLR) , volume =
-
[29]
International Conference on Machine Learning (ICML) , year =
Deep Laplacian-based Options for Temporally-Extended Exploration , author =. International Conference on Machine Learning (ICML) , year =
-
[30]
International Conference on Learning Representations (ICLR) , year =
Proper Laplacian Representation Learning , author =. International Conference on Learning Representations (ICLR) , year =
-
[31]
3rd International Conference on Learning Representations (ICLR) , year=
Adam: A Method for Stochastic Optimization , author=. 3rd International Conference on Learning Representations (ICLR) , year=
-
[32]
Sutton , title =
Shangtong Zhang and Richard S. Sutton , title =. Deep Reinforcement Learning Symposium, NIPS 2017 , volume =
2017
-
[33]
The Reinforcement Learning Journal , volume=
Investigating the Interplay of Prioritized Replay and Generalization , author=. The Reinforcement Learning Journal , volume=
-
[34]
Advances in Neural Information Processing Systems , volume=
Synthetic experience replay , author=. Advances in Neural Information Processing Systems , volume=
-
[35]
International Conference on Machine Learning , pages=
Adapting kernel representations online using submodular maximization , author=. International Conference on Machine Learning , pages=. 2017 , organization=
2017
-
[36]
Advances in neural information processing systems , volume=
Double Q-learning , author=. Advances in neural information processing systems , volume=
-
[37]
International Conference on Machine Learning , pages=
Unifying task specification in reinforcement learning , author=. International Conference on Machine Learning , pages=. 2017 , organization=
2017
-
[38]
arXiv preprint arXiv:1912.01603 , year=
Dream to control: Learning behaviors by latent imagination , author=. arXiv preprint arXiv:1912.01603 , year=
Pith/arXiv arXiv 1912
-
[39]
arXiv preprint arXiv:1903.00374 , year=
Model-based reinforcement learning for atari , author=. arXiv preprint arXiv:1903.00374 , year=
Pith/arXiv arXiv 1903
-
[40]
Medical Imaging with Deep Learning , pages =
Selective experience replay compression using coresets for lifelong deep reinforcement learning in medical imaging , author =. Medical Imaging with Deep Learning , pages =. 2024 , volume =
2024
-
[41]
Proceedings of the 40th International Conference on Machine Learning , pages =
Prototype-Sample Relation Distillation: Towards Replay-Free Continual Learning , author =. Proceedings of the 40th International Conference on Machine Learning , pages =. 2023 , volume =
2023
-
[42]
The big world hypothesis and its ramifications for artificial intelligence , author=
-
[43]
Artificial intelligence , volume=
Between MDPs and semi-MDPs: A framework for temporal abstraction in reinforcement learning , author=. Artificial intelligence , volume=. 1999 , publisher=
1999
-
[44]
Artificial Intelligence , volume=
Reward-respecting subtasks for model-based reinforcement learning , author=. Artificial Intelligence , volume=. 2023 , publisher=
2023
-
[45]
Journal of Machine Learning Research , volume=
Goal-space planning with subgoal models , author=. Journal of Machine Learning Research , volume=
-
[46]
Journal of Artificial Intelligence Research , volume=
Revisiting the arcade learning environment: Evaluation protocols and open problems for general agents , author=. Journal of Artificial Intelligence Research , volume=
-
[47]
Proceedings of the AAAI conference on artificial intelligence , volume=
Deep reinforcement learning with double q-learning , author=. Proceedings of the AAAI conference on artificial intelligence , volume=
-
[48]
Machine learning , volume=
Convergence results for single-step on-policy reinforcement-learning algorithms , author=. Machine learning , volume=. 2000 , publisher=
2000
-
[49]
and Naddaf, Yavar and Veness, Joel and Bowling, Michael , journal =
Bellemare, Marc G. and Naddaf, Yavar and Veness, Joel and Bowling, Michael , journal =. The
-
[50]
International Conference on Machine Learning , pages=
Atari-5: Distilling the arcade learning environment down to five games , author=. International Conference on Machine Learning , pages=. 2023 , organization=
2023
-
[51]
Proceedings of the AAAI conference on artificial intelligence , volume=
Rainbow: Combining improvements in deep reinforcement learning , author=. Proceedings of the AAAI conference on artificial intelligence , volume=
-
[52]
International Conference on Machine Learning , pages=
Revisiting rainbow: Promoting more insightful and inclusive deep reinforcement learning research , author=. International Conference on Machine Learning , pages=. 2021 , organization=
2021
-
[53]
Proceedings of the 27th International Joint Conference on Artificial Intelligence , pages=
Organizing experience: a deeper look at replay mechanisms for sample-based planning in continuous state domains , author=. Proceedings of the 27th International Joint Conference on Artificial Intelligence , pages=
-
[54]
Proceedings of the 37th International Conference on Machine Learning , pages =
Coresets for Data-efficient Training of Machine Learning Models , author =. Proceedings of the 37th International Conference on Machine Learning , pages =. 2020 , volume =
2020
-
[55]
Experience Selection in Deep Reinforcement Learning for Control , journal =
Tim de Bruin and Jens Kober and Karl Tuyls and Robert Babu. Experience Selection in Deep Reinforcement Learning for Control , journal =. 2018 , volume =
2018
-
[56]
Fedorov, Valerii , year =
-
[57]
International conference on machine learning , pages=
Revisiting fundamentals of experience replay , author=. International conference on machine learning , pages=. 2020 , organization=
2020
-
[58]
International Conference on Learning Representations , year=
Distributed Prioritized Experience Replay , author=. International Conference on Learning Representations , year=
-
[59]
Proceedings of the 40th International Conference on Machine Learning , pages =
Towards Sustainable Learning: Coresets for Data-efficient Deep Learning , author =. Proceedings of the 40th International Conference on Machine Learning , pages =. 2023 , editor =
2023
-
[60]
Proceedings of the Twenty-Seventh International Joint Conference on Artificial Intelligence,
Organizing Experience: a Deeper Look at Replay Mechanisms for Sample-Based Planning in Continuous State Domains , author =. Proceedings of the Twenty-Seventh International Joint Conference on Artificial Intelligence,. 2018 , month =
2018
-
[61]
No More Pesky Hyperparameters: Offline Hyperparameter Tuning for
Han Wang and Archit Sakhadeo and Adam M White and James M Bell and Vincent Liu and Xutong Zhao and Puer Liu and Tadashi Kozuno and Alona Fyshe and Martha White , journal=. No More Pesky Hyperparameters: Offline Hyperparameter Tuning for
-
[62]
2013 , journal=
Playing Atari with Deep Reinforcement Learning , author=. 2013 , journal=
2013
-
[63]
International Conference on Learning Representations (ICLR) , year=
Prioritized Experience Replay , author=. International Conference on Learning Representations (ICLR) , year=
-
[64]
Reinforcement Learning Conference , year =
Investigating the Interplay of Prioritized Replay and Generalization , author=. Reinforcement Learning Conference , year =
-
[65]
Reachability-Aware
Wang, Kaixin and Zhou, Kuangqi and Feng, Jiashi and Hooi, Bryan and Wang, Xinchao , booktitle =. Reachability-Aware. 2023 , volume =
2023
-
[66]
Advances in neural information processing systems , volume=
Safe and efficient off-policy reinforcement learning , author=. Advances in neural information processing systems , volume=
-
[67]
A Method for Evaluating Hyperparameter Sensitivity in Reinforcement Learning , volume =
Adkins, Jacob and Bowling, Michael and White, Adam , booktitle =. A Method for Evaluating Hyperparameter Sensitivity in Reinforcement Learning , volume =
-
[69]
Medical Imaging with Deep Learning , pages=
Selective experience replay compression using coresets for lifelong deep reinforcement learning in medical imaging , author=. Medical Imaging with Deep Learning , pages=. 2024 , organization=
2024
-
[70]
SIAM Journal on Computing , volume=
Bisimulation Metrics for Continuous Markov Decision Processes , author=. SIAM Journal on Computing , volume=. 2011 , publisher=
2011
-
[71]
A Kernel Perspective on Behavioural Metrics for Markov Decision Processes , author=
-
[72]
Advances in Neural Information Processing Systems , volume=
MICo: Improved representations via sampling-based state similarity for Markov decision processes , author=. Advances in Neural Information Processing Systems , volume=
-
[73]
International conference on machine learning , pages=
Asynchronous methods for deep reinforcement learning , author=. International conference on machine learning , pages=. 2016 , organization=
2016
-
[74]
International Conference on Machine Learning , pages=
Trajectory-aware eligibility traces for off-policy reinforcement learning , author=. International Conference on Machine Learning , pages=. 2023 , organization=
2023
-
[75]
Machine learning , volume=
Self-improving reactive agents based on reinforcement learning, planning and teaching , author=. Machine learning , volume=. 1992 , publisher=
1992
-
[76]
arXiv preprint arXiv:2509.15032 , year=
Sample Efficient Experience Replay in Non-stationary Environments , author=. arXiv preprint arXiv:2509.15032 , year=
-
[77]
Transactions on Machine Learning Research , volume=
Uncertainty-Based Experience Replay for Task-Agnostic Continual Reinforcement Learning , author=. Transactions on Machine Learning Research , volume=
-
[78]
Advances in Neural Information Processing Systems , volume=
Continual Learning with Deep Generative Replay , author=. Advances in Neural Information Processing Systems , volume=
-
[81]
Proceedings of the AAAI conference on artificial intelligence , volume=
Selective experience replay for lifelong learning , author=. Proceedings of the AAAI conference on artificial intelligence , volume=
-
[82]
2023 IEEE/CVF International Conference on Computer Vision (ICCV) , pages=
Prototype Reminiscence and Augmented Asymmetric Knowledge Aggregation for Non-Exemplar Class-Incremental Learning , author=. 2023 IEEE/CVF International Conference on Computer Vision (ICCV) , pages=. 2023 , organization=
2023
-
[83]
Advances in Neural Information Processing Systems , volume=
Experience Replay for Continual Learning , author=. Advances in Neural Information Processing Systems , volume=
-
[84]
Proceedings of the 28th International Joint Conference on Artificial Intelligence , pages=
Experience replay optimization , author=. Proceedings of the 28th International Joint Conference on Artificial Intelligence , pages=
-
[85]
Frontiers in neurorobotics , volume=
Map-based experience replay: a memory-efficient solution to catastrophic forgetting in reinforcement learning , author=. Frontiers in neurorobotics , volume=
-
[86]
Advances in Neural Information Processing Systems , volume=
Sample-Efficient Deep Reinforcement Learning via Episodic Backward Update , author=. Advances in Neural Information Processing Systems , volume=
discussion (0)
Sign in with ORCID, Apple, or X to comment. Anyone can read and Pith papers without signing in.