REVIEW 3 major objections 5 minor 3 cited by
A Generalized Algorithm for Multi-Objective Reinforcement Learning and Policy Adaptation
T0 review · 3 major / 5 minor · reviewed 2026-08-14 · deepseek-v4-flash
Pith's one-line read Envelope Q-learning converges to a fixed point for all preferences, so one network can serve every user.
desk verdict Envelope Q-learning is a real idea with mostly sound exact-operator theory, but the implemented minibatch target is a biased approximation the proofs don't cover — fixable, and worth refereeing. 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 load-bearing object is the envelope optimality filter $(HQ)(s,\omega)=\arg_Q \sup_{a\in A,\omega'\in\Omega} \omega^\top Q(s,a,\omega')$, which solves the convex envelope of the current Pareto frontier; plugged into $(TQ)(s,a,\omega)=r(s,a)+\gamma\mathbb{E}_{s'}\big[(HQ)(s',\omega)\big]$ it defines the multi-objective Bellman operator. The paper proves $T$ is a $\gamma$-contraction under the pseudo-metric $d$ and uses a generalized Banach fixed-point theorem to conclude convergence; in the implemented algorithm the supremum over $\Omega$ is replaced by a sampled minibatch $W$ of preferences, and the loss is annealed from a mean-squared target loss $L_A$ to a utility-alignment loss $L_B$ by homotopy optimization.
What would settle it
Train the envelope variant on the depth-7 fruit-tree task with $N_\omega=1$ and test every one of the 128 leaf preferences against the known optimum $\max_{r\in CCS}\omega^\top r$; if the sampled minibatch target does not preserve the fixed point of $T$, the coverage ratio and adaptation quality should drop materially below the $N_\omega=128$ runs.
Extended reading notes
Core claim
The paper establishes that the preferred optimal multi-objective value function $Q^*(s,a,\omega)$ is a fixed point of the envelope Bellman operator $T$, and that $T$ is a $\gamma$-contraction under the preference-weighted pseudo-metric $d(Q,Q')=\sup_{s,a,\omega}|\omega^\top(Q-Q')|$. By the paper's generalized Banach fixed-point theorem in a complete pseudo-metric space, iterating $T$ on any bounded multi-objective Q-value function yields a function with the same utility as $Q^*$ under every preference. The paper argues this justifies a single neural network $Q_\theta(s,\omega)$ trained with envelope targets and hindsight replay, and reports that this envelope MORL algorithm achieves the best coverage ratio, adaptation error, and average utility among the compared methods on deep sea treasure, fruit tree navigation, task-oriented dialog, and Super Mario, and infers hidden one-hot preferences in 15 to 100 episodes.
Load-bearing premise
The convergence proof treats the exact envelope operator over every preference in $\Omega$, but the implemented algorithm samples a small minibatch $W$ of preferences for each update; if sampling breaks the fixed-point property, the guarantee of optimal policies for all preferences does not follow.
Editorial extensions
If this is right
- After one training run, the same network can output the optimal action for any specified preference by maximizing $\omega^\top Q(s,a,\omega)$ over actions, with no retraining.
- Transitions collected under one sampled preference can be replayed under many other preferences via hindsight replay, so each trajectory contributes to many preference-specific updates.
- The contraction result means the convergence rate is governed by the discount factor $\gamma$, independent of how many preferences are represented, as long as the exact envelope operator is used.
- Envelope updates can transfer a good solution discovered under one preference to improve the value estimate under a different preference, which scalarized updates cannot do.
- After training, an unknown preference can be inferred from scalar rewards alone by searching the parameters of a preference distribution, with the paper reporting 15 episodes in fruit-tree navigation and 100 episodes in Super Mario.
Reading between the lines
- A natural extension the paper leaves open is annealing the sampled preference minibatch $W$ from a few points toward a dense or adaptive cover of $\Omega$; if the minibatch approximation converges to the exact envelope operator, the contraction guarantee would transfer to the practical algorithm.
- The same envelope-operator idea could be applied to non-linear preference functions by replacing the $\arg_Q \sup$ with a differentiable soft maximum, though the paper proves nothing for that case.
- Because the pseudo-metric $d$ collapses vector-valued Q-functions that share the same scalar utility, downstream users of such a network should read only scalarized utilities and not interpret individual components of $Q$ as unique expected returns.
- The preference-inference scheme is coupled to policy-gradient search, but nothing in the proof prevents replacing it with off-policy utility estimates, which might reduce the number of adaptation episodes further.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper introduces envelope MOQ-learning, a multi-objective reinforcement learning algorithm that represents Q(s,a,ω) as vector-valued expected returns indexed by a linear preference ω, and updates it with an envelope optimality operator T that maximizes utility over both actions and the full preference space Ω. The authors prove that Q*, the value of the policy that maximizes ω^T return for each ω, is a fixed point of T, that T is a γ-contraction under a preference-weighted sup-norm, and that iterating T converges to Q* in a complete pseudo-metric space. The practical method, Algorithm 1, approximates the envelope by sampling a minibatch W of Nω preferences, uses a homotopy loss combining a squared-error loss and a utility-pull loss, and applies HER-style replay. Experiments on Deep Sea Treasure, Fruit Tree Navigation, task-oriented dialogue, and Super Mario report that the envelope algorithm improves coverage ratio, adaptation error, and average utility relative to MOFQI, CN+OLS, and Scalarized, and that hidden preferences can be inferred within 15–100 episodes.
Significance. If the theoretical and empirical claims hold, the paper makes a useful contribution: it provides an operator-level framework for value-based MORL, a single-network representation of policies over the entire preference simplex, and a practical demonstration on non-trivial domains including dialogue and video game control. The paper ships code, defines reusable evaluation metrics (coverage ratio and adaptation error), and reports preference inference results that are falsifiable and easy to reproduce. The main caveat is that the implemented algorithm is not the operator for which convergence is proven, so the theoretical guarantee currently applies to an idealized version rather than to the algorithm that generates the empirical results. That gap is fixable but is load-bearing for the paper's central claim.
major comments (3)
- [Algorithm 1; Section 3; Theorem 5 in Supplementary A.1] The convergence theorems are proven for the exact operator T defined in Eq. (4) with H over all Ω, but Algorithm 1 replaces Ω by a minibatch W of Nω sampled preferences when computing y_ij = r + γ argQ max_{a∈A, ω′∈W} ω_i^T Q(s_{j+1}, a, ω′; θ). Theorems 1–3 do not cover this finite-preference minibatch operator, and the supplementary statement that 'Theorems 1–3 and 5 guarantee the convergence of this minibatch updating' overstates the results: Theorem 5 is a state-action minibatch convergence theorem, not a preference-space truncation theorem. For any finite W, max_{ω′∈W} ≤ sup_{ω′∈Ω}, so every bootstrapped target is a downward-biased estimate of the exact envelope target, and this bias does not vanish as the amount of data grows while Nω is fixed. Since the headline improvement over Scalarized is reported at Nω = 32, the improvement could in principle come partly from this preference-batch effect rather than from the envelope mechanism. Please either prove a convergence or bias bound for the sampled-preference operator, or run a controlled comparison between the minibatch target and an exact-envelope target across Nω values to quantify the gap.
- [Supplementary A.2.1, proof of Theorem 1] The proof of Theorem 1 contains a cancellation step labeled 'use def. of argQ' that is not justified by the surrounding argument. The displayed sandwich inequality asserts sup_{ω′∈Ω} ω^T argQ sup_π (ω′^T Q^π) = ω^T argQ sup_π (ω^T_* Q^π), with ω^T_* defined as the preference maximizing the outer ω-projection. This presupposes that the preference achieving the outer supremum is the same as the preference that should be used inside argQ, and it does not follow from the definition of argQ when different policies are optimal for different preferences. The fixed-point property Q* = T Q* is load-bearing for the convergence claims: without it, Theorem 3's contradiction step d(Q⋄, Q*) ≤ γ d(Q⋄, Q*) has no starting point. Please rewrite this proof with explicit conditions under which the sup over ω′ and the argQ selection commute, or give a direct argument using the convex coverage set property of Q*.
- [Supplementary A.2.1, proof of Theorem 2] The contraction proof relies on the same cancellation between ω^T and argQ, and additionally uses a 'without loss of generality' sign assumption to drop absolute values. As written, the inequality |ω^T[argQ sup_{a′,ω′} ω^T Q(s′,a′,ω′) − argQ sup_{a′′,ω′′} ω^T Q′(s′,a′′,ω′′)]| ≤ |sup_{a′,ω′} ω^T Q(s′,a′,ω′) − sup_{a′′,ω′′} ω^T Q′(s′,a′′,ω′′)| requires that the argQ selections have scalar projections equal to the corresponding suprema. That is not guaranteed for arbitrary bounded Q, Q′ when Ω is uncountable and Q is not continuous in ω (the supremum may not be attained, and if multiple maximizers exist the selection matters). Please state explicit regularity or selection assumptions, or modify the definition of H so that this inequality is a consequence of the definitions.
minor comments (5)
- [Section 3, Eq. (2)] The paper states that d does not satisfy the identity of indiscernibles and is therefore a pseudo-metric. Since Ω is an (m−1)-simplex, the linear functionals ω^T for ω ∈ Ω separate points in R^m, so if d(Q,Q′)=0 then Q(s,a,ω)=Q′(s,a,ω) for all s,a,ω. The space is in fact a metric space; the statement is incorrect, though the resulting convergence conclusions are unaffected.
- [Section 3, definition of H] The optimality filter H is defined using argQ, but no rule is given for choosing among multiple maximizers or for cases where the supremum over ω′ is not attained. Please specify the selection convention or state assumptions (e.g., finite A and continuity of Q in ω) that make H single-valued.
- [Table 1] The footnote reports p < 0.05 vs MOFQI on all domains, but MOFQI is not evaluated on SuperMario; the significance statement should specify which comparisons were actually performed and whether multiple-comparison corrections were applied.
- [Figure 4 and 'Sample Efficiency' paragraph] The text says Figure 4 shows plots over a varying number of sampled preferences Nω, while the figure caption says the panels compare FTN depths d = 5,6,7; please clarify which panel corresponds to which experiment and add axis labels for Nω where applicable.
- [Algorithm 2 in Supplementary C.5] Algorithm 2 uses the notation argV max without defining it; please define this analog of argQ for the value-network variant to make the pseudocode self-contained.
Circularity Check
No significant circularity: the envelope fixed-point theory is a genuine first-principles derivation, and the minibatch approximation gap is a soundness issue, not a circular reduction.
full rationale
The paper's central theoretical claim is that the preferred optimal value function Q*(s,a,ω) = argQ sup_π ω^T E[Σ γ^t r] is a fixed point of the envelope operator T (Eq. 4) and that T is a γ-contraction under the pseudo-metric d (Eq. 2). This is a standard Bellman-style fixed-point argument, not a definitional circle: Q* is defined through a supremum over policies, while T is defined through an optimality filter H that takes a supremum over actions and preferences. The proof of Theorem 1 supplies an analytic sandwich inequality to collapse the preference supremum in H to the policy supremum at the same ω, and Theorem 2 uses the standard sup-of-difference bound. These are independent mathematical reductions, not a restatement of the conclusion. The empirical evaluation uses external benchmarks (Deep Sea Treasure, Fruit Tree Navigation, PyDial-based dialog, Super Mario) and compares against published baselines; the inferred preferences in Tables 2-3 are optimization outputs, not parameters fitted to the theory. There are no load-bearing self-citations: the cited contraction and minibatch results (Bertsekas, Banach fixed-point theory) are external and the paper's own authors do not supply a uniqueness theorem or an ansatz through prior self-citation. The one in-scope concern is that Algorithm 1 computes the envelope target using a minibatch W of N_ω sampled preferences, while Theorems 1-3 prove convergence for the exact operator over all Ω; the supplementary statement that 'Theorems 1-3 and 5 guarantees the convergence of this minibatch updating' overstates Theorem 5, which covers state-action minibatching rather than truncation of the preference space. That is a finite-sample bias/correctness gap, not a circularity: the exact operator is not defined in terms of the sampled empirical targets, and no fitted quantity is renamed as a prediction. The derivation chain is therefore self-contained with respect to circularity.
Assumptions & free parameters
free parameters (4)
- Homotopy weight lambda schedule =
increases exponentially from 0.0 to 1.0
- Number of sampled preferences per update N_omega =
32 for Dialog, varied 1..128 for FTN
- Preference sampling distribution D_omega =
uniform over the (m-1)-simplex (nearly uniform)
- Gaussian standard deviation sigma for preference inference =
fixed (not reported numerically)
assumptions (5)
- standard math The MOMDP has bounded vector rewards and discount factor gamma in [0,1), so Q-functions are bounded and the value space is complete.
- domain assumption Preference functions are linear, f_omega(r) = omega^T r.
- domain assumption The preference space Omega is the full simplex (or at least spans R^m) so that the metric d is separating.
- ad hoc to paper The minibatch-approximated filter with W sampled from D_omega behaves like the exact filter over Omega.
- ad hoc to paper A single neural network with (s, omega) input can represent the multi-objective Q function sufficiently well for the envelope updates to align preferences with policies.
Cite this review
Pith. "Pith review of A Generalized Algorithm for Multi-Objective Reinforcement Learning and Policy Adaptation." pith.science (2026). https://pith.science/paper/CA6I4MZR
@misc{pith2026190808342,
author = {Pith},
title = {Pith review of: A Generalized Algorithm for Multi-Objective Reinforcement Learning and Policy Adaptation},
year = {2026},
howpublished = {\url{https://pith.science/paper/CA6I4MZR}},
note = {Machine review of arXiv:1908.08342}
}
read the original abstract
We introduce a new algorithm for multi-objective reinforcement learning (MORL) with linear preferences, with the goal of enabling few-shot adaptation to new tasks. In MORL, the aim is to learn policies over multiple competing objectives whose relative importance (preferences) is unknown to the agent. While this alleviates dependence on scalar reward design, the expected return of a policy can change significantly with varying preferences, making it challenging to learn a single model to produce optimal policies under different preference conditions. We propose a generalized version of the Bellman equation to learn a single parametric representation for optimal policies over the space of all possible preferences. After an initial learning phase, our agent can execute the optimal policy under any given preference, or automatically infer an underlying preference with very few samples. Experiments across four different domains demonstrate the effectiveness of our approach.
Figures
Figures from the paper (12 more)
Forward citations
Cited by 3 Pith papers
-
Preference Conditioned Multi-Objective Reinforcement Learning: Decomposed, Diversity-Driven Policy Optimization
D3PO learns a single preference-conditioned policy via per-objective PPO losses, late preference weighting, and a preference-distance-scaled diversity regularizer, reporting improved Pareto fronts on most tested MORL ...
-
Reinforcement Learning for Multi-Objective Multi-Echelon Supply Chain Optimisation
MORL/D, a decomposition-based multi-objective RL method, yields the most balanced Pareto-front approximations across three supply chain network complexities when compared with weighted-sum PPO and NSGA-II.
-
Multi-Objective Reinforcement Learning for Automated Resilient Cyber Defence
In a two-objective CybORG defence game, MOPPO produced policies that trade off network defence against user access, while Pareto Conditioned Networks did not respond reliably to preference prompts.
Reference graph
Works this paper leans on
-
[1]
Concrete problems in ai safety
Dario Amodei, Chris Olah, Jacob Steinhardt, Paul Christiano, John Schulman, and Dan Mané. Concrete problems in ai safety. arXiv preprint arXiv:1606.06565, 2016
arXiv 2016
-
[2]
Roijers, Peter Vamplew, Shimon Whiteson, and Richard Dazeley
Diederik M. Roijers, Peter Vamplew, Shimon Whiteson, and Richard Dazeley. A survey of multi-objective sequential decision-making. J. Artif. Intell. Res., 48:67–113, 2013
work page 2013
-
[3]
Il Yong Kim and OL De Weck. Adaptive weighted sum method for multiobjective optimization: a new method for pareto front generation. Structural and multidisciplinary optimization, 31(2):105–116, 2006
work page 2006
-
[4]
Multi-objective optimization using genetic algorithms: A tutorial
Abdullah Konak, David W Coit, and Alice E Smith. Multi-objective optimization using genetic algorithms: A tutorial. Reliability Engineering & System Safety, 91(9):992–1007, 2006
work page 2006
-
[5]
Sequential approximate multiobjective optimization using computational intelligence
Hirotaka Nakayama, Yeboon Yun, and Min Yoon. Sequential approximate multiobjective optimization using computational intelligence. Springer Science & Business Media, 2009
work page 2009
-
[6]
On min-norm and min-max methods of multi-objective optimization
JiGuan G Lin. On min-norm and min-max methods of multi-objective optimization. Mathematical programming, 103(1):1–33, 2005
work page 2005
-
[7]
Dynamic preferences in multi-criteria reinforcement learning
Sriraam Natarajan and Prasad Tadepalli. Dynamic preferences in multi-criteria reinforcement learning. In Luc De Raedt and Stefan Wrobel, editors, Machine Learning, Proceedings of the Twenty-Second Interna- tional Conference (ICML 2005), Bonn, Germany, August 7-11, 2005, volume 119 of ACM International Conference Proceeding Series, pages 601–608. ACM, 2005
work page 2005
-
[8]
Learning all optimal policies with multiple criteria
Leon Barrett and Srini Narayanan. Learning all optimal policies with multiple criteria. In William W. Cohen, Andrew McCallum, and Sam T. Roweis, editors,Machine Learning, Proceedings of the Twenty- Fifth International Conference (ICML 2008), Helsinki, Finland, June 5-9, 2008 , volume 307 of ACM International Conference Proceeding Series, pages 41–47. ACM, 2008
work page 2008
Show all 52 references
-
[9]
Assael, Diederik M
Hossam Mossalam, Yannis M. Assael, Diederik M. Roijers, and Shimon Whiteson. Multi-objective deep reinforcement learning. CoRR, abs/1610.02707, 2016
2016 arXiv
-
[10]
Dynamic Programming
Richard Ernest Bellman. Dynamic Programming. Princeton University Press, Princeton, NJ, USA, 1957
1957
-
[11]
Hindsight experience replay
Marcin Andrychowicz, Dwight Crow, Alex Ray, Jonas Schneider, Rachel Fong, Peter Welinder, Bob McGrew, Josh Tobin, Pieter Abbeel, and Wojciech Zaremba. Hindsight experience replay. In Advances in Neural Information Processing Systems 30: Annual Conference on Neural Information ...
2017
-
[12]
Modern homotopy methods in optimization
Layne T Watson and Raphael T Haftka. Modern homotopy methods in optimization. Computer Methods in Applied Mechanics and Engineering, 74(3):289–305, 1989
1989
-
[13]
Roijers, Tom Lenaerts, Ann Nowé, and Denis Steckelmacher
Axel Abels, Diederik M. Roijers, Tom Lenaerts, Ann Nowé, and Denis Steckelmacher. Dynamic weights in multi-objective deep reinforcement learning. In Proceedings of the 36th International Conference on Machine Learning, page TBA, 2019
2019
-
[14]
Empirical evaluation methods for multiobjective reinforcement learning algorithms
Peter Vamplew, Richard Dazeley, Adam Berry, Rustam Issabekov, and Evan Dekker. Empirical evaluation methods for multiobjective reinforcement learning algorithms. Machine Learning, 84(1-2):51–80, 2011
2011
-
[15]
Multiobjective reinforcement learning: A comprehensive overview
Chunming Liu, Xin Xu, and Dewen Hu. Multiobjective reinforcement learning: A comprehensive overview. IEEE Trans. Systems, Man, and Cybernetics: Systems, 45(3):385–398, 2015
2015
-
[16]
The steering approach for multi-criteria reinforcement learning
Shie Mannor and Nahum Shimkin. The steering approach for multi-criteria reinforcement learning. In Thomas G. Dietterich, Suzanna Becker, and Zoubin Ghahramani, editors, Advances in Neural Information Processing Systems 14 [Neural Information Processing Systems: Natural and Syn...
2001
-
[17]
Kephart, David Levine, Freeman L
Gerald Tesauro, Rajarshi Das, Hoi Chan, Jeffrey O. Kephart, David Levine, Freeman L. Rawson III, and Charles Lefurgy. Managing power consumption and performance of computing systems using reinforcement learning. In John C. Platt, Daphne Koller, Yoram Singer, and Sam T. Roweis,...
2007
-
[18]
Drugan, and Ann Nowé
Kristof Van Moffaert, Madalina M. Drugan, and Ann Nowé. Scalarized multi-objective reinforcement learning: Novel design techniques. In Proceedings of the 2013 IEEE Symposium on Adaptive Dynamic Programming and Reinforcement Learning, ADPRL 2013, IEEE Symposium Series on Comput...
2013
-
[19]
Multi-objective reinforcement learning with continu- ous pareto frontier approximation
Matteo Pirotta, Simone Parisi, and Marcello Restelli. Multi-objective reinforcement learning with continu- ous pareto frontier approximation. In Blai Bonet and Sven Koenig, editors,Proceedings of the Twenty-Ninth AAAI Conference on Artificial Intelligence, January 25-30, 2015, ...
2015
-
[20]
Manifold-based multi-objective policy search with sample reuse
Simone Parisi, Matteo Pirotta, and Jan Peters. Manifold-based multi-objective policy search with sample reuse. Neurocomputing, 263:3–14, 2017
2017
-
[21]
Parallel reinforcement learning for weighted multi-criteria model with adaptive margin
Kazuyuki Hiraoka, Manabu Yoshida, and Taketoshi Mishima. Parallel reinforcement learning for weighted multi-criteria model with adaptive margin. In Masumi Ishikawa, Kenji Doya, Hiroyuki Miyamoto, and Takeshi Yamakawa, editors,Neural Information Processing, 14th International C...
2007
-
[22]
Multi-objective reinforcement learning for acquiring all pareto optimal policies simultaneously - method of determining scalarization weights
Hitoshi Iima and Yasuaki Kuroe. Multi-objective reinforcement learning for acquiring all pareto optimal policies simultaneously - method of determining scalarization weights. In 2014 IEEE International Conference on Systems, Man, and Cybernetics, SMC 2014, San Diego, CA, USA, ...
2014
-
[23]
Multi-objective fitted q-iteration: Pareto frontier approximation in one single run
Andrea Castelletti, Francesca Pianosi, and Marcello Restelli. Multi-objective fitted q-iteration: Pareto frontier approximation in one single run. In Proceedings of the IEEE International Conference on Networking, Sensing and Control, ICNSC 2011, Delft, The Netherlands, 11-13 A...
2011
-
[24]
Tree-based fitted q-iteration for multi- objective markov decision problems
Andrea Castelletti, Francesca Pianosi, and Marcello Restelli. Tree-based fitted q-iteration for multi- objective markov decision problems. In The 2012 International Joint Conference on Neural Networks (IJCNN), Brisbane, Australia, June 10-15, 2012, pages 1–8. IEEE, 2012
2012
-
[25]
Preference elicitation in combinatorial auctions
Wolfram Conen and Tuomas Sandholm. Preference elicitation in combinatorial auctions. In Proceedings of the 3rd ACM conference on Electronic Commerce, pages 256–259. ACM, 2001
2001
-
[26]
A POMDP formulation of preference elicitation problems
Craig Boutilier. A POMDP formulation of preference elicitation problems. InProceedings of the Eighteenth National Conference on Artificial Intelligence and Fourteenth Conference on Innovative Applications of Artificial Intelligence, July 28 - August 1, 2002, Edmonton, Alberta, C...
2002
-
[27]
Survey of preference elicitation methods
Li Chen and Pearl Pu. Survey of preference elicitation methods. Technical report, 2004
2004
-
[28]
Ng and Stuart J
Andrew Y . Ng and Stuart J. Russell. Algorithms for inverse reinforcement learning. In Pat Langley, editor, Proceedings of the Seventeenth International Conference on Machine Learning (ICML 2000), Stanford University, Stanford, CA, USA, June 29 - July 2, 2000, pages 663–670. M...
2000
-
[29]
Pieter Abbeel and Andrew Y . Ng. Apprenticeship learning via inverse reinforcement learning. In Carla E. Brodley, editor, Machine Learning, Proceedings of the Twenty-first International Conference (ICML 2004), Banff, Alberta, Canada, July 4-8, 2004, volume 69 of ACM Internation...
2004
-
[30]
Generative adversarial imitation learning
Jonathan Ho and Stefano Ermon. Generative adversarial imitation learning. In Daniel D. Lee, Masashi Sugiyama, Ulrike von Luxburg, Isabelle Guyon, and Roman Garnett, editors, Advances in Neural In- formation Processing Systems 29: Annual Conference on Neural Information Process...
2016
-
[31]
Learning an agent’s utility function by observing behavior
Urszula Chajewska, Daphne Koller, and Dirk Ormoneit. Learning an agent’s utility function by observing behavior. In Proceedings of the Eighteenth International Conference on Machine Learning (ICML 2001), Williams College, Williamstown, MA, USA, June 28 - July 1, 2001, pages 35...
2001
-
[32]
Christopher J. C. H. Watkins and Peter Dayan. Technical note q-learning. Machine Learning, 8:279–292, 1992
1992
-
[33]
Linear operator theory in engineering and science
Arch W Naylor and George R Sell. Linear operator theory in engineering and science. Springer Science & Business Media, 2000
2000
-
[34]
Rusu, Joel Veness, Marc G
V olodymyr Mnih, Koray Kavukcuoglu, David Silver, Andrei A. Rusu, Joel Veness, Marc G. Bellemare, Alex Graves, Martin A. Riedmiller, Andreas Fidjeland, Georg Ostrovski, Stig Petersen, Charles Beattie, Amir Sadik, Ioannis Antonoglou, Helen King, Dharshan Kumaran, Daan Wierstra,...
2015
-
[35]
Williams
Ronald J. Williams. Simple statistical gradient-following algorithms for connectionist reinforcement learning. Machine Learning, 8:229–256, 1992. 11
1992
-
[36]
Stefan Ultes, Lina Maria Rojas-Barahona, Pei-Hao Su, David Vandyke, Dongho Kim, Iñigo Casanueva, Pawel Budzianowski, Nikola Mrksic, Tsung-Hsien Wen, Milica Gasic, and Steve J. Young. Pydial: A multi- domain statistical dialogue system toolkit. In Proceedings of the 55th Annual...
2017
-
[37]
Super Mario Bros for OpenAI Gym
Christian Kauten. Super Mario Bros for OpenAI Gym. https://github.com/Kautenja/ gym-super-mario-bros , 2018
2018
-
[38]
Lillicrap, Tim Harley, David Silver, and Koray Kavukcuoglu
V olodymyr Mnih, Adrià Puigdomènech Badia, Mehdi Mirza, Alex Graves, Timothy P. Lillicrap, Tim Harley, David Silver, and Koray Kavukcuoglu. Asynchronous methods for deep reinforcement learning. In Proceedings of the 33nd International Conference on Machine Learning, ICML 2016,...
2016
-
[39]
An introduction to metric spaces and fixed point theory , volume 53
Mohamed A Khamsi and William A Kirk. An introduction to metric spaces and fixed point theory , volume 53. John Wiley & Sons, 2011
2011
-
[40]
Bertsekas
Dimitri P. Bertsekas. Regular policies in abstract dynamic programming. SIAM Journal on Optimization, 27(3):1694–1727, 2017
2017
-
[41]
Abstract dynamic programming
Dimitri P Bertsekas. Abstract dynamic programming. Athena Scientific Belmont, MA, 2018
2018
-
[42]
Bellemare, Will Dabney, and Rémi Munos
Marc G. Bellemare, Will Dabney, and Rémi Munos. A distributional perspective on reinforcement learning. In Proceedings of the 34th International Conference on Machine Learning, ICML 2017, Sydney, NSW, Australia, 6-11 August 2017, pages 449–458, 2017
2017
-
[43]
Jost Schatzmann and Steve J. Young. The hidden agenda user simulation model. IEEE Trans. Audio, Speech & Language Processing, 17(4):733–747, 2009
2009
-
[44]
Stefan Ultes, Pawel Budzianowski, Iñigo Casanueva, Nikola Mrksic, Lina Maria Rojas-Barahona, Pei-Hao Su, Tsung-Hsien Wen, Milica Gasic, and Steve J. Young. Reward-balancing for statistical spoken dialogue systems using multi-objective reinforcement learning. In Proceedings of ...
2017
-
[45]
Lillicrap, Jonathan J
Timothy P. Lillicrap, Jonathan J. Hunt, Alexander Pritzel, Nicolas Heess, Tom Erez, Yuval Tassa, David Silver, and Daan Wierstra. Continuous control with deep reinforcement learning. CoRR, abs/1509.02971, 2015
2015 arXiv
-
[46]
Lillicrap, Ilya Sutskever, and Sergey Levine
Shixiang Gu, Timothy P. Lillicrap, Ilya Sutskever, and Sergey Levine. Continuous deep q-learning with model-based acceleration. In Proceedings of the 33nd International Conference on Machine Learning, ICML 2016, New York City, NY, USA, June 19-24, 2016, pages 2829–2838, 2016
2016
-
[47]
Discrete sequential prediction of continuous actions for deep RL
Luke Metz, Julian Ibarz, Navdeep Jaitly, and James Davidson. Discrete sequential prediction of continuous actions for deep RL. CoRR, abs/1705.05035, 2017
2017 arXiv
-
[48]
Deep reinforcement learning with double q-learning
Hado van Hasselt, Arthur Guez, and David Silver. Deep reinforcement learning with double q-learning. In Dale Schuurmans and Michael P. Wellman, editors,Proceedings of the Thirtieth AAAI Conference on Artificial Intelligence, February 12-17, 2016, Phoenix, Arizona, USA. , pages ...
2016
-
[49]
Prioritized experience replay
Tom Schaul, John Quan, Ioannis Antonoglou, and David Silver. Prioritized experience replay. CoRR (Published at ICLR 2016), abs/1511.05952, 2015
2016 arXiv
-
[50]
L.J.P van der Maaten and G.E. Hinton. Visualizing high-dimensional data using t-sne. Journal of Mahcine Learning Research, Nov 2008. 12 Supplementary Material for Generalized Algorithm for Multi-Objective RL and Policy Adaptation A Theoretical Framework for Value-Based MORL Al...
2008
-
[51]
Convergence Condition: We have ∀Q∈Q k,TQ∈Q k+1; (15)
-
[52]
distance
Box Condition: For all k,Qk is a Cartesian product of the form Qk =×s∈S,a∈AQk {s},{a}, (16) whereQk S,A is a set of bounded real-valued functions on statesS and actionsA. Then for every Q0∈Q 0 the sequence{Qk} generated by the minibatch iteration algorithm converges to Q∗ [40]...
Reviewed August 14, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.