REVIEW 4 major objections 5 minor 80 references
ACL-QL: Adaptive Conservative Level in Q-Learning for Offline Reinforcement Learning
T0 review · 4 major / 5 minor · reviewed 2026-08-11 · deepseek-v4-flash
Pith's one-line read ACL-QL argues that letting each state-action pair choose its own conservative level keeps offline Q-values in a mild range between the ordinary Q-function and CQL's conservative Q-function, and that this improves D4RL returns.
desk verdict A real idea and strong D4RL results, but the implemented surrogate losses relax the claimed interval guarantee instead of enforcing it. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The engine is a pair of adaptive weight functions $w_\mu(s,a)$ and $w_{\pi_\beta}(s,a)$, implemented as a single neural network with two outputs, trained against three objectives: a monotonicity loss that aligns weight differences with transition-quality differences, surrogate hinge losses that encode the two sandwich inequalities, and a positivity regularizer. The transition-quality pseudo-label $m(s,a)$ combines normalized Monte Carlo returns and immediate rewards for in-dataset pairs, and uses distance to the in-dataset action for OOD pairs. The paper also swaps probabilities for $1+\ln\mu$ and $1+\ln\pi_\beta$ in the surrogate hinge losses to avoid arithmetic underflow, invoking $\ln x \le x-1$.
What would settle it
Run ACL-QL on HalfCheetah-medium-v2 while logging, for every dataset transition, the argument inside the hinge losses in Eqs. (20) and (21); if a non-negligible fraction of transitions has the wrong sign, so the learned Q lies outside the claimed sandwich between ordinary Q and CQL Q, the central claim fails. A complementary check is to replace the logarithmic surrogate with the exact probabilities and see whether the reported performance gap vanishes.
Extended reading notes
Core claim
The paper's discovery is that the conservative level of Q-learning can be made pointwise adaptive while remaining theoretically anchored. For any distribution $\mu$ supported inside the behavioral policy, the gap between ACL-QL's Q-function and the ordinary Q-function is $(w_\mu \mu - w_{\pi_\beta}\pi_\beta)/\pi_\beta$, and the gap to CQL's Q-function is $((\alpha-w_\mu)\mu - (\alpha-w_{\pi_\beta})\pi_\beta)/\pi_\beta$. Forcing the first gap positive and the second positive sandwiches the learned Q-values between ordinary Q and CQL Q. ACL-QL sets the desired gaps from a normalized transition-quality score $m(s,a)$ and trains the weights with monotonicity, surrogate hinge, and positivity losses, with CQL as the special case where both weights equal the constant $\alpha$.
Load-bearing premise
The paper assumes that replacing the action probabilities in the conservative-level losses by the logarithmic expressions $1+\ln\mu$ and $1+\ln\pi_\beta$ leaves the claimed sandwich condition intact, even though those expressions can become negative.
Editorial extensions
If this is right
- If the sandwich claim holds, offline RL becomes less sensitive to the choice of conservatism hyperparameter; ACL-QL uses the same $\alpha$ across tasks in one environment and still outperforms CQL at every fixed $\alpha$ on the MuJoCo suite.
- The learned Q-values stay in a mild range, so selecting a checkpoint by the dataset's average Q-value does not drift toward overestimation; the reported Q-values sit between SAC's ordinary Q-values and CQL-10's values.
- Because CQL is the constant-weight special case, ACL-QL's improvements over CQL are direct consequences of letting conservative levels vary per transition rather than changing the underlying pessimism principle.
- The framework allows custom weight functions beyond neural networks, so hand-designed rules could be substituted where learning weights is undesirable.
Reading between the lines
- A natural follow-up is to test whether the logarithmic surrogate, not the sandwich theory, is what drives the gains: replacing Eqs. (20)-(21) with the exact hinge losses (16)-(17) would separate the two effects, since the paper does not prove the surrogate preserves the inequalities.
- The same sandwich construction could be layered onto other conservative offline algorithms that use a KL or distributional penalty, because the identities depend only on the CQL-style regularizer and not on the actor-critic backbone.
- The transition-quality pseudo-label is a placeholder: upper-envelope estimates, learned uncertainty, or learned Q-based scores could replace it, and making $\lambda$ in Eq. (13) depend on dataset quality might remove the last tuned hyperparameter.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes ACL-QL, an offline reinforcement learning algorithm that aims to keep the learned Q-function in a mild range between the ordinary Q-function and CQL's conservative Q-function. It introduces two learnable weight functions, w_mu and w_pi_beta, that modulate the conservative penalty per state-action pair, and it derives conditions on these weights under simplified assumptions. The practical algorithm uses transition-quality pseudo-labels, a monotonicity loss, and surrogate hinge losses to train the weights, Q-function, and policy. Experiments on D4RL Gym-MuJoCo, Adroit, and Franka Kitchen report state-of-the-art or competitive results, and ablations study the effect of each loss component and the transition-quality measurements.
Significance. The framework is well motivated, and the idea of per-transition conservative levels is a useful direction for reducing sensitivity to conservatism hyperparameters. The paper's main theoretical contribution, however, is not established: the implemented surrogate losses do not enforce the derived conditions, and the closed-form comparisons to CQL assume an idealized objective. If these gaps were closed, the method would offer a principled way to control conservatism in a fine-grained manner. The experimental study is extensive and includes a useful comparison against CQL with different alpha values, and the ablations are informative. The aggregate Q-value statistics in Table VII are suggestive but do not verify the pointwise 'mild range' claim. The flexibility of the proposed framework and the breadth of the D4RL evaluation are notable strengths.
major comments (4)
- [Section V-C, Eqs. (20)-(21)] The surrogate losses do not enforce the conditions in Eqs. (16)-(17). Lemma V.1 gives ln x <= x - 1, so 1 + ln x <= x, with equality only at x = 1; replacing mu and pi_beta by 1 + ln(mu) and 1 + ln(pi_beta) changes the inequality in an uncontrolled way because the same quantity appears with both positive and negative signs. Concretely, with mu = 0.8, pi_beta = 0.5, w_mu = 1.1, w_pi_beta = 1.0, and d_ord = 1.0, Eq. (20) equals 0 while Eq. (16) equals 0.12 > 0, so a zero surrogate loss does not imply the original condition; the same failure applies to Eq. (21) and d_cql. Since Eq. (24) is a sum of nonnegative hinge terms, the optimizer can drive these losses to zero even when the conservative-level conditions of Propositions IV.1 and IV.3 are violated. The theoretical guarantees are therefore not connected to the implemented objective, and the authors need either a stable version of the original probabilities or a proof of the intended implication.
- [Section IV, Propositions IV.1 and IV.3] The closed-form expressions for the CQL Q-function and for d_cql assume a simplified objective that omits the max over mu, the regularizer R(mu), and the expectation over states; the proof in the appendix (Eq. (47)) starts from such a simplified problem. Consequently, the statement that Q^pi_CQL = Q^pi - alpha(mu - pi_beta)/pi_beta does not describe the actual CQL solution, and the pointwise interval Q_CQL <= Q_hat <= Q^pi is not established for the algorithms being compared. The authors should either state the precise idealizations under which Eqs. (5) and (10) hold or present them as design heuristics rather than formal guarantees.
- [Section V-B, Eq. (15)] The monotonicity loss in Eq. (15) enforces a relationship between softmax outputs over pairs in a batch, whereas Definition IV.1 specifies monotonicity with respect to the optimal Q-function for actions in the same state. The replacement of Q* by the transition-quality measurement m(s,a) and the use of cross-state pairs are not derived from the definition, so the loss is a heuristic. If the monotonicity property is central to the adaptive conservative-level mechanism, the authors should justify why the batch-level softmax equality approximates the per-state condition.
- [Section VI-B, Table VII and Figure 4] The empirical support for the 'mild range' claim reports only average Q-values over the dataset (Table VII) and a sampled visualization (Figure 4). An average can lie between the SAC and CQL averages even if the pointwise interval is violated for most transitions. To substantiate the claim that ACL-QL Q-values lie between the ordinary and CQL Q-values pointwise, the authors should report distributional evidence such as quantiles or per-transition Q differences.
minor comments (5)
- [Appendix, Proof of Proposition IV.2] The heading reads 'Proof of Proposition VI.2' but should be 'Proof of Proposition IV.2'.
- [Proposition IV.2, Eq. (9)] The denominator in the definition of err(s,a) is written as (1 - gamma sqrt(|D|)), which appears to be a typesetting error; the appendix Eq. (30) gives the correct form (1 - gamma) sqrt(|D|).
- [Proposition IV.2 and Appendix] The proof uses the symbol g(s,a) in Eqs. (38) and (46) where the main text defines h(s,a); please unify the notation.
- [Section VI-B, Table II] The baseline results are taken from different original papers, and standard deviations are not reported for the baselines, making it difficult to assess whether the reported improvements are statistically significant; this limitation should be acknowledged.
- [Section VI-A and Table I] The text states that the same hyperparameters are used for all tasks on the same environment, but alpha is set to 10, 20, or 1 depending on the environment; please clarify whether alpha is considered a per-environment hyperparameter.
Circularity Check
The 'mild range' validation is self-referential: the interval is encoded in the hinge losses, so Table VII checks that the objective took effect rather than independently predicting the interval; the D4RL benchmark comparisons are external and not circular.
-
self definitional
[Section VI-C, Table VII, with Eqs. (16)-(17) and Propositions IV.1, IV.3]
"The Q-values of ACL-QL are between SAC and CQL-10 and are closer to the Q-values of online SAC, showing that the losses Lord, Lcql in Equations (16) and (17) take effect."
The interval 'between SAC and CQL-10' is not an independent prediction. Equations (16)-(17) are hinge losses constructed to enforce d_ord(s,a) >= 0 and d_cql(s,a) >= 0, and by Eqs. (5) and (10) those inequalities are precisely the condition that the learned Q-function lies between the ordinary Q-function and the CQL Q-function. Thus the reported average Q-values only confirm that the optimized weights approximately satisfy the constraints the losses were designed to impose. The mild-range property is an input encoded in the training objective, and Table VII is a sanity check of optimization, not an external confirmation of the framework. The D4RL score comparisons retain independent content because they benchmark against external algorithms.
full rationale
The paper's main benchmark claims are not circular: ACL-QL is compared against external baselines on D4RL, and the reported returns are independent of the paper's own construction. No load-bearing self-citation chain was found; the only self-citation visible in the references is prior autonomous-driving work cited as background, not used to justify the ACL-QL mechanism. The CQL closed-form anchor and concentration bounds are imported from external prior work (Kumar et al.), so no uniqueness theorem is being imported from the authors' own earlier papers. The one genuine circularity is the validation of the 'mild range' property: the hinge losses in Eqs. (16)-(17) are derived from Propositions IV.1 and IV.3 to enforce exactly d_ord >= 0 and d_cql >= 0, which by definition place the Q-function between the ordinary and CQL Q-functions. Therefore Table VII's observation that ACL-QL Q-values lie between SAC and CQL-10 is a check that the losses took effect, not a prediction of an independent phenomenon. This is a mild self-referential validation, not a statistically forced benchmark result. Separately, there is a correctness risk that is not circularity: the surrogate losses Eqs. (20)-(21) replace probabilities with 1+ln(p), and Lemma V.1 gives 1+ln(p) <= p, with the substituted quantities possibly negative; minimizing the surrogates can therefore leave the exact conditions of Eqs. (16)-(17) violated. That is a derivation gap affecting whether the implemented objective enforces the claimed interval guarantee, but it is not an equivalence-by-construction circularity, so it does not by itself raise the circularity score.
Assumptions & free parameters
free parameters (4)
- CQL anchor scale alpha =
10 for halfcheetah and walker, 20 for hopper and kitchen, 1/10/20 for Adroit tasks
- lambda in transition quality measurement =
0.5
- dord and dcql gap functions =
dord=(1-m)*rmax, dcql=m*rmax
- transition quality pseudo-label m(s,a) =
lambda*g_norm+(1-lambda)*r_norm; OOD uses T(m,L2)
assumptions (6)
- domain assumption Support of mu is contained in support of pi_beta so mu/pi_beta is finite
- ad hoc to paper CQL Q-function has closed form Q_CQL = Q_pi - alpha(mu-pi_beta)/pi_beta
- ad hoc to paper Replacing probabilities by 1+ln(probability) preserves the conservative-level inequalities
- standard math Bellman concentration bound used in Proposition IV.2
- domain assumption Behavioral cloning gives a good estimate of pi_beta
- domain assumption Transition quality m(s,a) preserves the ordering of the optimal Q-function
Cite this review
Pith. "Pith review of ACL-QL: Adaptive Conservative Level in Q-Learning for Offline Reinforcement Learning." pith.science (2026). https://pith.science/paper/46BPFQR6
@misc{pith2026241216848,
author = {Pith},
title = {Pith review of: ACL-QL: Adaptive Conservative Level in Q-Learning for Offline Reinforcement Learning},
year = {2026},
howpublished = {\url{https://pith.science/paper/46BPFQR6}},
note = {Machine review of arXiv:2412.16848}
}
read the original abstract
Offline Reinforcement Learning (RL), which operates solely on static datasets without further interactions with the environment, provides an appealing alternative to learning a safe and promising control policy. The prevailing methods typically learn a conservative policy to mitigate the problem of Q-value overestimation, but it is prone to overdo it, leading to an overly conservative policy. Moreover, they optimize all samples equally with fixed constraints, lacking the nuanced ability to control conservative levels in a fine-grained manner. Consequently, this limitation results in a performance decline. To address the above two challenges in a united way, we propose a framework, Adaptive Conservative Level in Q-Learning (ACL-QL), which limits the Q-values in a mild range and enables adaptive control on the conservative level over each state-action pair, i.e., lifting the Q-values more for good transitions and less for bad transitions. We theoretically analyze the conditions under which the conservative level of the learned Q-function can be limited in a mild range and how to optimize each transition adaptively. Motivated by the theoretical analysis, we propose a novel algorithm, ACL-QL, which uses two learnable adaptive weight functions to control the conservative level over each transition. Subsequently, we design a monotonicity loss and surrogate losses to train the adaptive weight functions, Q-function, and policy network alternatively. We evaluate ACL-QL on the commonly used D4RL benchmark and conduct extensive ablation studies to illustrate the effectiveness and state-of-the-art performance compared to existing offline DRL baselines.
Figures
Figures from the paper (1 more)
Reference graph
Works this paper leans on
-
[1]
Mastering the game of go with deep neural networks and tree search,
D. Silver, A. Huang, C. J. Maddison, A. Guez, L. Sifre, G. Van Den Driessche, J. Schrittwieser, I. Antonoglou, V . Panneershelvam, M. Lanctot et al., “Mastering the game of go with deep neural networks and tree search,” Nature, 2016
work page 2016
-
[2]
Self-paced prioritized curriculum learning with coverage penalty in deep reinforcement learning,
Z. Ren, D. Dong, H. Li, and C. Chen, “Self-paced prioritized curriculum learning with coverage penalty in deep reinforcement learning,” IEEE Transactions on Neural Networks and Learning Systems , 2018
work page 2018
-
[3]
Feature control as intrinsic motivation for hierarchical reinforcement learning,
N. Dilokthanakul, C. Kaplanis, N. Pawlowski, and M. Shanahan, “Feature control as intrinsic motivation for hierarchical reinforcement learning,” IEEE Transactions on Neural Networks and Learning Systems, 2019
work page 2019
-
[4]
Scalable deep reinforcement learning for vision-based robotic manipulation,
D. Kalashnikov, A. Irpan, P. Pastor, J. Ibarz, A. Herzog, E. Jang, D. Quillen, E. Holly, M. Kalakrishnan, V . Vanhoucke et al. , “Scalable deep reinforcement learning for vision-based robotic manipulation,” in Conference on Robot Learning . PMLR, 2018
work page 2018
-
[5]
Solving rubik’s cube with a robot hand,
I. Akkaya, M. Andrychowicz, M. Chociej, M. Litwin, B. McGrew, A. Petron, A. Paino, M. Plappert, G. Powell, R. Ribas et al., “Solving rubik’s cube with a robot hand,” arXiv preprint arXiv:1910.07113, 2019
arXiv 1910
-
[6]
Rein- forcement learning for mobile robotics exploration: A survey,
L. C. Garaffa, M. Basso, A. A. Konzen, and E. P. de Freitas, “Rein- forcement learning for mobile robotics exploration: A survey,” IEEE Transactions on Neural Networks and Learning Systems , 2021
work page 2021
-
[7]
Deductive reinforcement learning for visual autonomous urban driving navigation,
C. Huang, R. Zhang, M. Ouyang, P. Wei, J. Lin, J. Su, and L. Lin, “Deductive reinforcement learning for visual autonomous urban driving navigation,” IEEE Transactions on Neural Networks and Learning Systems, 2021
work page 2021
-
[8]
Deep reinforcement learning on autonomous driving policy with auxiliary critic network,
Y . Wu, S. Liao, X. Liu, Z. Li, and R. Lu, “Deep reinforcement learning on autonomous driving policy with auxiliary critic network,” IEEE Transactions on Neural Networks and Learning Systems , 2021
work page 2021
Show all 80 references
-
[9]
Cadre: A cascade deep reinforcement learning framework for vision- based autonomous urban driving,
Y . Zhao, K. Wu, Z. Xu, Z. Che, Q. Lu, J. Tang, and C. H. Liu, “Cadre: A cascade deep reinforcement learning framework for vision- based autonomous urban driving,” Proceedings of the AAAI Conference on Artificial Intelligence , 2022
2022
-
[10]
Batch reinforcement learning,
S. Lange, T. Gabel, and M. Riedmiller, “Batch reinforcement learning,” in Reinforcement learning. Springer, 2012
2012
-
[11]
A survey on offline reinforcement learning: Taxonomy, review, and open problems,
R. F. Prudencio, M. R. Maximo, and E. L. Colombini, “A survey on offline reinforcement learning: Taxonomy, review, and open problems,” IEEE Transactions on Neural Networks and Learning Systems , 2023
2023
-
[12]
Stabilizing off- policy q-learning via bootstrapping error reduction,
A. Kumar, J. Fu, M. Soh, G. Tucker, and S. Levine, “Stabilizing off- policy q-learning via bootstrapping error reduction,” Advances in Neural Information Processing Systems , 2019
2019
-
[13]
Offline reinforcement learning: Tutorial, review, and perspectives on open problems,
S. Levine, A. Kumar, G. Tucker, and J. Fu, “Offline reinforcement learning: Tutorial, review, and perspectives on open problems,” arXiv preprint arXiv:2005.01643, 2020
2005 arXiv
-
[14]
Way off-policy batch deep reinforce- ment learning of implicit human preferences in dialog,
N. Jaques, A. Ghandeharioun, J. H. Shen, C. Ferguson, A. Lapedriza, N. Jones, S. Gu, and R. Picard, “Way off-policy batch deep reinforce- ment learning of implicit human preferences in dialog,” arXiv preprint arXiv:1907.00456, 2019
1907 arXiv
-
[15]
Behavior regularized offline reinforcement learning,
Y . Wu, G. Tucker, and O. Nachum, “Behavior regularized offline reinforcement learning,” arXiv preprint arXiv:1911.11361 , 2019
1911 arXiv
-
[16]
Keep doing what worked: Behavior modelling priors for offline reinforcement learning,
N. Siegel, J. T. Springenberg, F. Berkenkamp, A. Abdolmaleki, M. Ne- unert, T. Lampe, R. Hafner, N. Heess, and M. Riedmiller, “Keep doing what worked: Behavior modelling priors for offline reinforcement learning,” in International Conference on Learning Representations , 2020
2020
-
[17]
Off-policy deep reinforcement learning without exploration,
S. Fujimoto, D. Meger, and D. Precup, “Off-policy deep reinforcement learning without exploration,” in International Conference on Machine Learning. PMLR, 2019
2019
-
[18]
Conservative q-learning for offline reinforcement learning,
A. Kumar, A. Zhou, G. Tucker, and S. Levine, “Conservative q-learning for offline reinforcement learning,” Advances in Neural Information Processing Systems, 2020
2020
-
[19]
Conservative data sharing for multi-task offline reinforcement learning,
T. Yu, A. Kumar, Y . Chebotar, K. Hausman, S. Levine, and C. Finn, “Conservative data sharing for multi-task offline reinforcement learning,” Advances in Neural Information Processing Systems , 2021
2021
-
[20]
Combo: Conservative offline model-based policy optimization,
T. Yu, A. Kumar, R. Rafailov, A. Rajeswaran, S. Levine, and C. Finn, “Combo: Conservative offline model-based policy optimization,” Ad- vances in Neural Information Processing Systems , 2021
2021
-
[21]
Conservative offline distribu- tional reinforcement learning,
Y . Ma, D. Jayaraman, and O. Bastani, “Conservative offline distribu- tional reinforcement learning,” Advances in Neural Information Pro- cessing Systems, 2021
2021
-
[22]
Bail: Best-action imitation learning for batch deep reinforcement learning,
X. Chen, Z. Zhou, Z. Wang, C. Wang, Y . Wu, and K. Ross, “Bail: Best-action imitation learning for batch deep reinforcement learning,” Advances in Neural Information Processing Systems , 2020
2020
-
[23]
Critic regularized regression,
Z. Wang, A. Novikov, K. Zolna, J. S. Merel, J. T. Springenberg, S. E. Reed, B. Shahriari, N. Siegel, C. Gulcehre, N. Heess et al. , “Critic regularized regression,” Advances in Neural Information Processing Systems, 2020
2020
-
[24]
Curriculum offline imitating learning,
M. Liu, H. Zhao, Z. Yang, J. Shen, W. Zhang, L. Zhao, and T.-Y . Liu, “Curriculum offline imitating learning,” Advances in Neural Information Processing Systems, 2021
2021
-
[25]
Issues in using function approximation for reinforcement learning,
S. Thrun and A. Schwartz, “Issues in using function approximation for reinforcement learning,” in Proceedings of the 1993 connectionist models summer school . Psychology Press, 2014
1993
-
[26]
Diagnosing bottlenecks in deep q-learning algorithms,
J. Fu, A. Kumar, M. Soh, and S. Levine, “Diagnosing bottlenecks in deep q-learning algorithms,” in International Conference on Machine Learning. PMLR, 2019
2019
-
[27]
Towards characterizing divergence in deep q-learning,
J. Achiam, E. Knight, and P. Abbeel, “Towards characterizing divergence in deep q-learning,” arXiv preprint arXiv:1903.08894 , 2019
1903 arXiv
-
[28]
Non-delusional q-learning and value-iteration,
T. Lu, D. Schuurmans, and C. Boutilier, “Non-delusional q-learning and value-iteration,” Advances in neural information processing systems, 2018
2018
-
[29]
Soft actor-critic: Off- policy maximum entropy deep reinforcement learning with a stochastic actor,
T. Haarnoja, A. Zhou, P. Abbeel, and S. Levine, “Soft actor-critic: Off- policy maximum entropy deep reinforcement learning with a stochastic actor,” in International Conference on Machine Learning. PMLR, 2018
2018
-
[30]
Addressing function approxi- mation error in actor-critic methods,
S. Fujimoto, H. Hoof, and D. Meger, “Addressing function approxi- mation error in actor-critic methods,” in International conference on machine learning. PMLR, 2018
2018
-
[31]
Adaptive qq -learning for data-based optimal output regulation with experience replay,
B. Luo, Y . Yang, and D. Liu, “Adaptive qq -learning for data-based optimal output regulation with experience replay,” IEEE Transactions on Cybernetics, 2018
2018
-
[32]
Prioritized experience replay,
T. Schaul, J. Quan, I. Antonoglou, and D. Silver, “Prioritized experience replay,” arXiv preprint arXiv:1511.05952 , 2015
2015 arXiv
-
[33]
Playing atari with deep reinforcement learn- ing,
V . Mnih, K. Kavukcuoglu, D. Silver, A. Graves, I. Antonoglou, D. Wier- stra, and M. Riedmiller, “Playing atari with deep reinforcement learn- ing,” arXiv preprint arXiv:1312.5602 , 2013
2013 arXiv
-
[34]
Distributed prioritized experience replay,
D. Horgan, J. Quan, D. Budden, G. Barth-Maron, M. Hessel, H. van Hasselt, and D. Silver, “Distributed prioritized experience replay,” in International Conference on Learning Representations , 2018
2018
-
[35]
An equivalence between loss functions and non-uniform sampling in experience replay,
S. Fujimoto, D. Meger, and D. Precup, “An equivalence between loss functions and non-uniform sampling in experience replay,” Advances in neural information processing systems , 2020
2020
-
[36]
Model-augmented prioritized experience replay,
Y . Oh, J. Shin, E. Yang, and S. J. Hwang, “Model-augmented prioritized experience replay,” in International Conference on Learning Represen- tations, 2021
2021
-
[37]
Demysti- fying reinforcement learning in time-varying systems,
P. Hamadanian, M. Schwarzkopf, S. Sen, and M. Alizadeh, “Demysti- fying reinforcement learning in time-varying systems,” arXiv preprint arXiv:2201.05560, 2022
2022 arXiv
-
[38]
Towards continual reinforcement learning: A review and perspectives,
K. Khetarpal, M. Riemer, I. Rish, and D. Precup, “Towards continual reinforcement learning: A review and perspectives,” The Journal of Artificial Intelligence Research , 2022. 14
2022
-
[39]
Pseudo- rehearsal: Achieving deep reinforcement learning without catastrophic forgetting,
C. Atkinson, B. McCane, L. Szymanski, and A. Robins, “Pseudo- rehearsal: Achieving deep reinforcement learning without catastrophic forgetting,” Neurocomputing, 2021
2021
-
[40]
Under- standing the impact of entropy on policy optimization,
Z. Ahmed, N. Le Roux, M. Norouzi, and D. Schuurmans, “Under- standing the impact of entropy on policy optimization,” in International conference on machine learning . PMLR, 2019
2019
-
[41]
Offline reinforcement learning with implicit q-learning,
I. Kostrikov, A. Nair, and S. Levine, “Offline reinforcement learning with implicit q-learning,” in International Conference on Learning Representations, 2022
2022
-
[42]
Monotonic quantile network for worst-case offline reinforcement learning,
C. Bai, T. Xiao, Z. Zhu, L. Wang, F. Zhou, A. Garg, B. He, P. Liu, and Z. Wang, “Monotonic quantile network for worst-case offline reinforcement learning,” IEEE Transactions on Neural Networks and Learning Systems, 2022
2022
-
[43]
Mild policy evaluation for offline actor–critic,
L. Huang, B. Dong, J. Lu, and W. Zhang, “Mild policy evaluation for offline actor–critic,” IEEE Transactions on Neural Networks and Learning Systems, 2023
2023
-
[44]
Plas: Latent action space for offline reinforcement learning,
W. Zhou, S. Bajracharya, and D. Held, “Plas: Latent action space for offline reinforcement learning,” in Conference on Robot Learning, 2020
2020
-
[45]
Offline re- inforcement learning with fisher divergence critic regularization,
I. Kostrikov, R. Fergus, J. Tompson, and O. Nachum, “Offline re- inforcement learning with fisher divergence critic regularization,” in International Conference on Machine Learning . PMLR, 2021
2021
-
[46]
A minimalist approach to offline reinforce- ment learning,
S. Fujimoto and S. S. Gu, “A minimalist approach to offline reinforce- ment learning,” Advances in Neural Information Processing Systems , 2021
2021
-
[47]
An emphatic approach to the problem of off-policy temporal-difference learning,
R. S. Sutton, A. R. Mahmood, and M. White, “An emphatic approach to the problem of off-policy temporal-difference learning,” The Journal of Machine Learning Research , 2016
2016
-
[48]
Algaedice: Policy gradient from arbitrary experience,
O. Nachum, B. Dai, I. Kostrikov, Y . Chow, L. Li, and D. Schuurmans, “Algaedice: Policy gradient from arbitrary experience,” arXiv preprint arXiv:1912.02074, 2019
1912 arXiv
-
[49]
Accelerating on- line reinforcement learning with offline datasets,
A. Nair, M. Dalal, A. Gupta, and S. Levine, “Accelerating on- line reinforcement learning with offline datasets,” arXiv preprint arXiv:2006.09359, 2020
2006 arXiv
-
[50]
Advantage-weighted regression: Simple and scalable off-policy reinforcement learning,
X. B. Peng, A. Kumar, G. Zhang, and S. Levine, “Advantage-weighted regression: Simple and scalable off-policy reinforcement learning,”arXiv preprint arXiv:1910.00177, 2019
1910 arXiv
-
[51]
Safe policy improvement with an estimated baseline policy,
T. D. Simão, R. Laroche, and R. Tachet des Combes, “Safe policy improvement with an estimated baseline policy,” in Proceedings of the 19th International Conference on Autonomous Agents and MultiAgent Systems, 2020
2020
-
[52]
An optimistic perspec- tive on offline reinforcement learning,
R. Agarwal, D. Schuurmans, and M. Norouzi, “An optimistic perspec- tive on offline reinforcement learning,” in International Conference on Machine Learning. PMLR, 2020
2020
-
[53]
S4rl: Surprisingly simple self- supervision for offline reinforcement learning in robotics,
S. Sinha, A. Mandlekar, and A. Garg, “S4rl: Surprisingly simple self- supervision for offline reinforcement learning in robotics,” in Conference on Robot Learning . PMLR, 2022
2022
-
[54]
Offline rl without off-policy evaluation,
D. Brandfonbrener, W. Whitney, R. Ranganath, and J. Bruna, “Offline rl without off-policy evaluation,” Advances in Neural Information Pro- cessing Systems, 2021
2021
-
[55]
Offline reinforcement learning as one big sequence modeling problem,
M. Janner, Q. Li, and S. Levine, “Offline reinforcement learning as one big sequence modeling problem,” Advances in neural information processing systems, 2021
2021
-
[56]
Decision transformer: Reinforcement learning via sequence modeling,
L. Chen, K. Lu, A. Rajeswaran, K. Lee, A. Grover, M. Laskin, P. Abbeel, A. Srinivas, and I. Mordatch, “Decision transformer: Reinforcement learning via sequence modeling,” Advances in Neural Information Processing Systems, 2021
2021
-
[57]
Attention is all you need,
A. Vaswani, N. Shazeer, N. Parmar, J. Uszkoreit, L. Jones, A. N. Gomez, Ł. Kaiser, and I. Polosukhin, “Attention is all you need,” Advances in Neural Information Processing Systems , 2017
2017
-
[58]
Hundreds guide millions: Adaptive offline reinforcement learning with expert guidance,
Q. Yang, S. Wang, Q. Zhang, G. Huang, and S. Song, “Hundreds guide millions: Adaptive offline reinforcement learning with expert guidance,” IEEE Transactions on Neural Networks and Learning Systems , 2023
2023
-
[59]
When to trust your model: Model-based policy optimization,
M. Janner, J. Fu, M. Zhang, and S. Levine, “When to trust your model: Model-based policy optimization,” Advances in Neural Information Processing Systems, 2019
2019
-
[60]
Morel: Model-based offline reinforcement learning,
R. Kidambi, A. Rajeswaran, P. Netrapalli, and T. Joachims, “Morel: Model-based offline reinforcement learning,” Advances in Neural Infor- mation Processing Systems , 2020
2020
-
[61]
Mopo: Model-based offline policy optimization,
T. Yu, G. Thomas, L. Yu, S. Ermon, J. Y . Zou, S. Levine, C. Finn, and T. Ma, “Mopo: Model-based offline policy optimization,” Advances in Neural Information Processing Systems , 2020
2020
-
[62]
Deployment-efficient reinforcement learning via model-based offline optimization,
T. Matsushima, H. Furuta, Y . Matsuo, O. Nachum, and S. S. Gu, “Deployment-efficient reinforcement learning via model-based offline optimization,” in International Conference on Learning Representations, 2021
2021
-
[63]
Agnostic system identification for model- based reinforcement learning,
S. Ross and J. A. Bagnell, “Agnostic system identification for model- based reinforcement learning,” in International Conference on Machine Learning, 2012
2012
-
[64]
Synthesis and stabilization of complex behaviors through online trajectory optimization,
Y . Tassa, T. Erez, and E. Todorov, “Synthesis and stabilization of complex behaviors through online trajectory optimization,” in 2012 IEEE/RSJ International Conference on Intelligent Robots and Systems . IEEE, 2012
2012
-
[65]
A survey of monte carlo tree search methods,
C. B. Browne, E. Powley, D. Whitehouse, S. M. Lucas, P. I. Cowling, P. Rohlfshagen, S. Tavener, D. Perez, S. Samothrakis, and S. Colton, “A survey of monte carlo tree search methods,” IEEE Transactions on Computational Intelligence and AI in Games , 2012
2012
-
[66]
Near-optimal regret bounds for reinforcement learning,
P. Auer, T. Jaksch, and R. Ortner, “Near-optimal regret bounds for reinforcement learning,” Advances in Neural Information Processing Systems, 2008
2008
-
[67]
Deep exploration via bootstrapped dqn,
I. Osband, C. Blundell, A. Pritzel, and B. Van Roy, “Deep exploration via bootstrapped dqn,” Advances in Neural Information Processing Systems, 2016
2016
-
[68]
Semi-supervised classification with graph convolutional networks,
T. N. Kipf and M. Welling, “Semi-supervised classification with graph convolutional networks,” in International Conference on Learning Rep- resentations, 2017
2017
-
[69]
Deep learning using rectified linear units (relu),
A. F. Agarap, “Deep learning using rectified linear units (relu),” arXiv preprint arXiv:1803.08375, 2018
2018 arXiv
-
[70]
D4rl: Datasets for deep data-driven reinforcement learning,
J. Fu, A. Kumar, O. Nachum, G. Tucker, and S. Levine, “D4rl: Datasets for deep data-driven reinforcement learning,” 2020
2020
-
[71]
Mujoco: A physics engine for model-based control,
E. Todorov, T. Erez, and Y . Tassa, “Mujoco: A physics engine for model-based control,” in 2012 IEEE/RSJ International Conference on Intelligent Robots and Systems . IEEE, 2012
2012
-
[72]
Openai gym,
G. Brockman, V . Cheung, L. Pettersson, J. Schneider, J. Schul- man, J. Tang, and W. Zaremba, “Openai gym,” arXiv preprint arXiv:1606.01540, 2016
2016 arXiv
-
[73]
Learning complex dexterous manipulation with deep reinforcement learning and demonstrations,
A. Rajeswaran, V . Kumar, A. Gupta, G. Vezzani, J. Schulman, E. Todorov, and S. Levine, “Learning complex dexterous manipulation with deep reinforcement learning and demonstrations,” in Proceedings of Robotics: Science and Systems (RSS) , 2018
2018
-
[74]
Alvinn: An autonomous land vehicle in a neural network,
D. A. Pomerleau, “Alvinn: An autonomous land vehicle in a neural network,” Advances in neural information processing systems , 1988
1988
-
[75]
Reproducibil- ity of benchmarked deep reinforcement learning tasks for continuous control,
R. Islam, P. Henderson, M. Gomrokchi, and D. Precup, “Reproducibil- ity of benchmarked deep reinforcement learning tasks for continuous control,” arXiv preprint arXiv:1708.04133 , 2017
2017 arXiv
-
[76]
A workflow for offline model-free robotic reinforcement learning,
A. Kumar, A. Singh, S. Tian, C. Finn, and S. Levine, “A workflow for offline model-free robotic reinforcement learning,” arXiv preprint arXiv:2109.10813, 2021
2021 arXiv
-
[77]
Relay pol- icy learning: Solving long horizon tasks via imitation and reinforcement learning,
A. Gupta, V . Kumar, C. Lynch, S. Levine, and K. Hausman, “Relay pol- icy learning: Solving long horizon tasks via imitation and reinforcement learning,” Conference on Robot Learning (CoRL) , 2019
2019
-
[78]
R. S. Sutton and A. G. Barto, Reinforcement learning: An introduction . MIT press, 2018
2018
-
[79]
Stability analysis of discrete-time infinite-horizon optimal control with discounted cost,
R. Postoyan, L. Bu¸ soniu, D. Neši ´c, and J. Daafouz, “Stability analysis of discrete-time infinite-horizon optimal control with discounted cost,” IEEE Transactions on Automatic Control , 2016. 15 APPENDIX Proof of Proposition IV .1 . Without considering the sam- pling error ...
2016
-
[80]
>" to " <
If we want to relax the conservative level, like requiring control over the V-values or the empirical MDP, we can also easily relax the Equation (29) to the integration over each state or the whole empirical MDP respectively. For the conditions where we want to make the learne...
Reviewed August 11, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.