REVIEW 3 major objections 4 minor 2 cited by
Data-Driven Exploration for a Class of Continuous-Time Indefinite Linear--Quadratic Reinforcement Learning Problems
T0 review · 3 major / 4 minor · reviewed 2026-08-06 · deepseek-v4-flash
Pith's one-line read A data-driven actor–critic algorithm for continuous-time indefinite LQ control learns its own exploration schedule and still provably achieves the same $O(N^{3/4})$ regret bound as fixed-schedule methods.
desk verdict Solid companion extension with adaptive exploration and zero-initial-state analysis, but the central regret theorem is proved for the continuous-time recursion while the discretized algorithm's bias conditions are explicitly left unchecked. 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 argument is carried by two exact conditional-mean identities plus the adaptive schedule. For the actor variance, the expected increment of the stochastic-approximation update is $h^{(\Gamma)}(\Gamma_n;\theta_n,\gamma_n) = \tfrac12\big(\int_0^T k_1(t;\theta_n)\,dt\big)\Gamma_n\big(\sum_j D_jD_j^\top\big)\Gamma_n - \tfrac{\gamma_n T}{2}\Gamma_n$, and this quadratic form becomes contractive once $\gamma_n = c_\gamma\int k_1/(b_n T)$ makes the target $\Gamma_n^* = (\gamma_n T/\int k_1)(\sum_j D_jD_j^\top)^{-1} = (c_\gamma/b_n)(\sum_j D_jD_j^\top)^{-1}$ lie inside the projection set. For the policy mean, the expected increment is $h^{(\phi)}(\phi_n,\Gamma_n;\theta_n,\gamma_n) = -l(\phi_n,\Gamma_n)(\phi_n-\phi^*)$, where $l$ is bounded below by a positive multiple of $|\Gamma_n|$ when the initial state is zero. These identities convert the updates into stochastic approximations with effective learning rates $a_n^{(\Gamma)}/b_n$ and $a_n^{(\phi)}/b_n$; the choice $b_n = (n+\beta)^{1/4}/\alpha^{1/4}$ balances the bias from the shrinking target, the expanding projection bounds, and the variance bound, yielding the $O(N^{3/4})$ regret.
What would settle it
Run Algorithm 1 with a fixed seed and a long horizon, and estimate the conditional mean of $Z_n(T)$ and $Y_n(T)$ empirically at many iteration counts. If the fitted mean increment for $\Gamma_n$ differs from $\tfrac12(\int k_1)\Gamma_n(\sum_j D_jD_j^\top)\Gamma_n - \tfrac{\gamma_n T}{2}\Gamma_n$ by a term that does not decay faster than the effective learning rate $a_n^{(\Gamma)}/b_n$, or if the mean increment for $\phi_n$ is not collinear with $-(\phi_n-\phi^*)$, the contraction argument in Theorems 5.3 and 5.7 fails and the regret bound would not hold for the implemented scheme.
Extended reading notes
Core claim
The central claim is Theorem 5.9: for both zero and nonzero initial states, Algorithm 1 yields regret bounds of the form $\sum_{n=1}^N E[\bar{J}(\phi^*,0) - \bar{J}(\phi_n,\Gamma_n)] \le c + c N^{3/4}(\log N)^p(\log\log N)$, with the exponent $p$ depending on the case. The exploration parameters are not hand-tuned sequences: the critic's temperature is set by $\gamma_n = c_\gamma \int_0^T k_1(t;\theta_n)\,dt/(b_n T)$, and the actor's variance $\Gamma_n$ is updated by stochastic approximation using a policy-gradient estimator. Under this adaptive schedule the paper proves that $\gamma_n$ and $\Gamma_n$ converge almost surely to zero, that $\Gamma_n$ has mean-squared error $O((\log n)^{p_2}(\log\log n)^{4/3}/n^{1/2})$, that $\phi_n$ converges almost surely to the optimal mean coefficient $\phi^*$, and that the regret matches the fixed-schedule bound of [1]. The zero-initial-state case is handled by using $a_n^{(\phi)}/b_n$ as the effective learning rate, which compensates for the fact that the contraction coefficient for $\phi$ vanishes like $|\Gamma_n|$.
Load-bearing premise
The proof assumes that after time-discretization and projection, the expected parameter updates are exactly the clean mean-increment formulas in (35) and (50), with any extra bias small enough to be absorbed by the stated hyperparameter conditions; the discretization analysis needed to justify this for the implemented algorithm is deferred in Remark 5.10.
Editorial extensions
If this is right
- The same $O(N^{3/4})$-type regret bound that was previously available only for fixed exploration schedules is preserved when both exploration parameters are learned from data.
- Learning can start from the zero state $x_0 = 0$, which the earlier fixed-schedule analysis could not handle.
- Exploration levels $\gamma_n$ and $\Gamma_n$ shrink to zero almost surely, so the algorithm asymptotically converges to the deterministic optimal policy $N(\cdot|\phi^*x, 0)$.
- In numerical tests the adaptive schedule converges faster and accumulates less regret than both model-free fixed-exploration and model-based benchmarks.
- Because exploration is driven by data rather than a pre-set schedule, the amount of manual tuning of exploration hyperparameters is reduced.
Reading between the lines
- The same adaptive-temperature and adaptive-variance mechanism could plausibly carry over to multi-dimensional states or to LQ problems with running control rewards, where the optimal policy is still Gaussian but the Riccati structure changes; the paper does not address these cases.
- Numerical experiments show regret slopes around 0.73 in one setting, below the theoretical $3/4$ exponent; an unproved but testable question is whether data-driven exploration actually improves the exponent rather than only the constants.
- The paper defers the discretization-error analysis to earlier references (Remark 5.10), so an explicit treatment of the discretized algorithm's bias would be needed for a fully implementation-ready guarantee.
- Because the actor and critic reuse the same trajectory data in each iteration, the adaptive schedule may interact with off-policy or replay-based sampling; testing the algorithm with mini-batched or asynchronous updates would show whether the contraction arguments survive.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper studies model-free continuous-time indefinite linear-quadratic reinforcement learning with state- and control-dependent volatility. It proposes an actor-critic algorithm in which the critic temperature gamma_n and actor variance Gamma_n are updated adaptively from data, using stochastic approximation with projections, and it proves almost-sure convergence of (gamma_n, Gamma_n, phi_n), mean-squared-error rates for Gamma_n and phi_n, and a cumulative regret bound of O(N^{3/4} polylog) that matches the best-known fixed-schedule bound of [1] and also covers the case x0 = 0. The analysis follows the continuous-time policy-gradient/temporal-difference machinery of [1] and reduces to stochastic approximation with time-varying bounds; numerical experiments compare the adaptive schedule with fixed-schedule baselines.
Significance. If the results are fully established, the paper makes a meaningful contribution: it replaces manually tuned deterministic exploration schedules by a provably convergent data-driven schedule, removes the nonzero-initial-state restriction, and preserves the best-known sublinear regret order. The theoretical rates are corroborated by log-log slopes (-0.51, -0.52, 0.73) that match the predicted -1/2, -1/2, and 3/4, and the experimental protocol reports random seeds for reproducibility. The main reservations concern the gap between the discretized Algorithm 1 and the continuous-time recursions that are actually analyzed, and the compressed proof of the x0 = 0 convergence rate.
major comments (3)
- [§4.4, Eqs. (27)–(30); Remark 5.10; Theorems 5.3 and 5.7] Theorem 5.9 is stated for Algorithm 1, which implements the discretized updates (27)–(30), but the proofs of Theorems 5.3 and 5.7 analyze the continuous-time recursions (31) and (49) driven by Z_n(T) and Y_n(T), whose exact mean increments are (35) and (50). Remark 5.10 asserts that discretization bias terms beta_n^{(Gamma)} and beta_n^{(phi)} 'should' be O(n^{-3/8}) and that choosing Delta t_n = T(n+1)^{-5/8} achieves this, with details omitted. Theorems 5.3 and 5.7 impose specific conditions on these bias terms, namely summability of a_n|beta_n| in (38)(i), the variance bound (37), and monotonicity of b_n^3 |beta_n|^2 / a_n, and none of these is verified for the discretized scheme in (27)–(30). Without this verification, the O(N^{3/4}) regret bound is proved only for the continuous-time recursion, not for the algorithm whose output Theorem 5.9 concerns.
- [§5.2, Theorem 5.8(b), Eq. (52)] The removal of the nonzero-initial-state assumption is one of the paper's advertised improvements over [1], yet the proof of the x0 = 0 case in Theorem 5.8(b) is only a sketch. After deriving the lower bound l(phi_n, Gamma_n) >= c_bar_1 |Gamma_n| I in (52), the text says to reinterpret a_n^{(phi)}/b_n as the effective learning rate and to 'follow the strategy outlined in Theorem 5.7', with the analysis of [1, Appendix B.6] carried over. The resulting MSE rate n^{-1/4} is then used in the x0 = 0 regret bound in Theorem 5.9. No recursion analogous to (45)–(47) is written for rho_n = E|phi_n - phi*|^2, and the role of the condition sum a_n^{(phi)}/b_n = infinity is not demonstrated. This is a load-bearing step and needs a complete derivation rather than an appeal to a different theorem.
- [§5.1.2, Eq. (35); §5.2, Eq. (50)] The contraction argument for the entire algorithm rests on the exact identities (35) and (50), both of which are asserted with only a pointer to 'taking integration and expectation in (33)' or to [1, Section B]. Because gamma_n is now a stochastic, data-dependent sequence (12) and Gamma_n is updated by policy gradient rather than by a deterministic schedule, these identities are not immediate corollaries of [1] even though the strategy is similar. The paper should either reproduce the derivations, which are conditional on the current parameter iterates and are short, or state precisely which results of [1] apply verbatim and why the adaptive gamma_n and Gamma_n do not alter them.
minor comments (4)
- [§6 and Appendix A] The numerical experiments do not implement Algorithm 1 exactly as analyzed: Appendix A states that the projections are 'slightly modified' to [−2.25, −1.1] for phi_n and [0, 1] for Gamma_n, with theta and gamma left unbounded, whereas Theorem 5.1 specifies expanding projection sets K_n^{(phi)} and K_n^{(Gamma)}. The paper should state clearly that the experiments validate a variant of the algorithm and discuss whether the theoretical guarantees are believed to extend to these fixed projection sets.
- [Algorithm 1] There is a typo in Algorithm 1: 'Uupdate state' should read 'Update state'.
- [Eq. (22)] In the projected update for theta, the entropy term is written as gamma_n p(t; phi_n, gamma_n); this should presumably be gamma_n p(t; phi_n, Gamma_n), consistent with Eqs. (18), (29), and (30).
- [References] Reference [1] is cited as 'Forthcoming'; if it has now appeared in SIAM Journal on Control and Optimization, the full publication details should be given.
Circularity Check
No constructional circularity: the O(N^{3/4}) regret bound is genuinely derived by stochastic approximation from the adaptive schedule; self-cited mean-increment formulas are parameter-free technical lemmas, and the deferred discretization analysis in Remark 5.10 is a correctness gap, not a reduction to inputs.
full rationale
The paper's derivation chain is: Algorithm 1 (Eqs. 27–30) is analyzed through the idealized continuous-time recursions (16)–(20); the two load-bearing mean-increment identities (35) and (50) are asserted and credited to [1, Section B]; Theorems 5.3 and 5.7 convert them, under the adaptive temperature rule (12) and the hyperparameter choices of Theorem 5.1, into the MSE rate E|Γ_n|^2 = O(n^{-1/2} polylog); Theorem 5.8 does the same for φ_n; Theorem 5.9 sums the per-iteration objective gap via (58)–(59) to obtain O(N^{3/4} polylog). I can exhibit no Eq.-equals-Eq. reduction: the regret (53) is the gap in the unregularized objective, not a relabeling of any fitted parameter or schedule. The Section 3.2 admission that rule (12) is 'chosen to ensure convergence and achieve the desired sublinear regret bounds' is an honest design attribution: the bound's order is targeted by b_n = Θ(n^{-1/4}) and a_n = Θ(n^{-3/4}), and Theorems 5.3–5.9 certify that the stochastic-approximation contraction (variance bound (37), coercivity (44), summability (38)) actually delivers that order; that is ordinary schedule tuning, not constructional circularity. The self-citations to the same group's [1] for (35), (50), Lemma 5.2, and Lemmas B.7–B.8 are load-bearing, but they are parameter-free computations from the stated estimator definitions that do not contain the adaptive-exploration claim, hence they count as real evidence under the review rules and do not raise the circularity score. The genuine weakness is Remark 5.10: Theorems 5.3–5.8 require bias terms β_n of order n^{-3/8}, the paper asserts Δt_n = T(n+1)^{-5/8} achieves this, and explicitly omits the verification ('We omit the details here'), so Theorem 5.9 is proven for the continuous-time recursion rather than the discretized Algorithm 1; Appendix A further deviates by fixing projection sets in the experiments. That is a correctness gap, not circularity, and it is what the score understates. Verdict: no significant circularity (score 2).
Assumptions & free parameters
free parameters (5)
- c_γ =
unspecified; must satisfy 1/c_γ < λ_min((ΣD_jD_j^T)^{−1})
- α, β =
α^{3/4}=1 for a^{(Γ)}, α^{3/4}=0.05 for a^{(φ)}, β=1 in experiments
- c^{(θ)}, c^{(γ)} =
unbounded in experiments
- Experimental projection bounds for φ and Γ =
φ∈[-2.25,-1.1], Γ∈[0,1]
- Trivial critic k1=1, k3=0 =
k1(t;θ)=1, k3(t;θ,γ)=0
assumptions (6)
- domain assumption The state process follows the SDE (1) with scalar A,C_j, vector B,D_j, and ΣD_jD_j^T>0, objective (2).
- domain assumption The optimal value function is quadratic and the optimal randomized policy is Gaussian, Eqs. (7)-(9).
- ad hoc to paper k1, k3 parameterizations are bounded with |k1|≥1/c2, |k1'|≤c1, |k3'|≤c3 (Eq. 11).
- ad hoc to paper The mean increments of the stochastic updates have the exact forms (35) and (50).
- standard math The sequence conditions in (38) hold: Σa_n^{(Γ)}=∞, Σa_n^{(Γ)}|β_n|<∞, Σ(a_n^{(Γ)})^2(...)e^{c(...)}<∞, Σa_n^{(Γ)}/b_n=∞, Σ|1/b_n−1/b_{n+1}|<∞.
- standard math Robbins-Siegmund almost-supermartingale theorem and SA convergence theorems [45, 46, 47].
Cite this review
Pith. "Pith review of Data-Driven Exploration for a Class of Continuous-Time Indefinite Linear--Quadratic Reinforcement Learning Problems." pith.science (2026). https://pith.science/paper/KZBI7AVB
@misc{pith2026250700358,
author = {Pith},
title = {Pith review of: Data-Driven Exploration for a Class of Continuous-Time Indefinite Linear--Quadratic Reinforcement Learning Problems},
year = {2026},
howpublished = {\url{https://pith.science/paper/KZBI7AVB}},
note = {Machine review of arXiv:2507.00358}
}
read the original abstract
We study reinforcement learning (RL) for the same class of continuous-time stochastic linear--quadratic (LQ) control problems as in \cite{huang2024sublinear}, where volatilities depend on both states and controls while states are scalar-valued and running control rewards are absent. We propose a model-free, data-driven exploration mechanism that adaptively adjusts entropy regularization by the critic and policy variance by the actor. Unlike the constant or deterministic exploration schedules employed in \cite{huang2024sublinear}, which require extensive tuning for implementations and ignore learning progresses during iterations, our adaptive exploratory approach boosts learning efficiency with minimal tuning. Despite its flexibility, our method achieves a sublinear regret bound that matches the best-known model-free results for this class of LQ problems, which were previously derived only with fixed exploration schedules. Numerical experiments demonstrate that adaptive explorations accelerate convergence and improve regret performance compared to the non-adaptive model-free and model-based counterparts.
Figures
Figures from the paper (2 more)
Forward citations
Cited by 2 Pith papers
-
ART for Diffusion Sampling: Continuous-Time Control and Actor-Critic Learning
ART-RL learns adaptive diffusion sampling timesteps via continuous-time control and Gaussian actor–critic RL, improving and transferring over hand-designed grids at matched budgets.
-
Continuous-Time Reinforcement Learning for $N$-Player Stochastic Differential Games with Exploratory Policies
For entropy-regularized N-player differential games, a Nash-type equilibrium exists exactly when the Gibbs conditional best responses are jointly compatible, checkable via a cross-partial criterion on the learned q-functions.
Reference graph
Works this paper leans on
-
[1]
Sublinear regret for a class of continuous-time linear– quadratic reinforcement learning problems,
Y. Huang, Y. Jia, and X. Y. Zhou, “Sublinear regret for a class of continuous-time linear– quadratic reinforcement learning problems,”SIAM Journal on Control and Optimization, 2025. Forthcoming. Available at https://arxiv.org/abs/2407.17226
arXiv 2025
-
[2]
B. D. Anderson and J. B. Moore, Optimal Control: Linear Quadratic Methods . Courier Cor- poration, 2007. 33
work page 2007
-
[3]
J. Yong and X. Y. Zhou, Stochastic Controls: Hamiltonian Systems and HJB Equations . New York, NY: Spinger, 1999
work page 1999
-
[4]
Stochastic linear quadratic regulators with indefinite control weight costs,
S. Chen, X. Li, and X. Y. Zhou, “Stochastic linear quadratic regulators with indefinite control weight costs,” SIAM Journal on Control and Optimization , vol. 36, no. 5, pp. 1685–1702, 1998
work page 1998
-
[5]
M. Ait Rami, X. Y. Zhou, and J. Moore, “Well-posedness and attainability of indefinite stochastic linear quadratic control in infinite time horizon,” Systems & Control Letters, vol. 41, no. 2, pp. 123–133, 2000
work page 2000
-
[6]
Linear matrix inequalities, riccati equations, and indefinite stochastic linear quadratic controls,
M. A. Rami and X. Y. Zhou, “Linear matrix inequalities, riccati equations, and indefinite stochastic linear quadratic controls,” IEEE Transactions on Automatic Control, vol. 45, no. 6, pp. 1131–1143, 2000
work page 2000
-
[7]
M. A. Rami, X. Chen, J. B. Moore, and X. Y. Zhou, “Solvability and asymptotic behavior of generalized riccati equations arising in indefinite stochastic lq controls,” IEEE Transactions on Automatic Control , vol. 46, no. 3, pp. 428–440, 2001
work page 2001
-
[8]
A primal-dual semi-definite programming approach to linear quadratic control,
D. D. Yao, S. Zhang, and X. Y. Zhou, “A primal-dual semi-definite programming approach to linear quadratic control,” IEEE Transactions on Automatic Control , vol. 46, no. 9, pp. 1442– 1447, 2001
work page 2001
Show all 49 references
-
[9]
Stabilization control for itˆ o stochastic system with indefinite state and control weight costs,
H. Li, Q. Qi, and H. Zhang, “Stabilization control for itˆ o stochastic system with indefinite state and control weight costs,” International Journal of Control , vol. 95, no. 2, pp. 295–302, 2022
2022
-
[10]
Optimal regulators for a class of nonlinear stochastic systems,
B. Gashi and H. Hua, “Optimal regulators for a class of nonlinear stochastic systems,” Inter- national Journal of Control , vol. 96, no. 1, pp. 136–146, 2023
2023
-
[11]
Indefinite linear-quadratic optimal control of mean-field stochas- tic differential equation with jump diffusion: an equivalent cost functional method,
G. Wang and W. Wang, “Indefinite linear-quadratic optimal control of mean-field stochas- tic differential equation with jump diffusion: an equivalent cost functional method,” IEEE Transactions on Automatic Control , 2024
2024
-
[12]
Stochastic linear quadratic optimal control problems with regime- switching jumps in infinite horizon,
F. Wu, X. Li, and X. Zhang, “Stochastic linear quadratic optimal control problems with regime- switching jumps in infinite horizon,”SIAM Journal on Control and Optimization, vol. 63, no. 2, pp. 852–891, 2025. 34
2025
-
[13]
On estimating the expected return on the market: An exploratory investiga- tion,
R. C. Merton, “On estimating the expected return on the market: An exploratory investiga- tion,” Journal of Financial Economics , vol. 8, no. 4, pp. 323–361, 1980
1980
-
[14]
D. G. Luenberger, Investment Science. Oxford University Press, 1998
1998
-
[15]
Rustem and M
B. Rustem and M. Howe, Algorithms for worst-case design and applications to risk manage- ment. Princeton University Press, 2009
2009
-
[16]
R. S. Sutton and A. G. Barto, Reinforcement Learning: An Introduction . Cambridge, MA: MIT Press, 2018
2018
-
[17]
A survey on intrinsic motivation in reinforcement learning,
A. Aubret, L. Matignon, and S. Hassas, “A survey on intrinsic motivation in reinforcement learning,” arXiv preprint arXiv:1908.06976 , 2019
1908 arXiv
-
[18]
Formal theory of creativity, fun, and intrinsic motivation (1990–2010),
J. Schmidhuber, “Formal theory of creativity, fun, and intrinsic motivation (1990–2010),” IEEE Transactions on Autonomous Mental Development , vol. 2, no. 3, pp. 230–247, 2010
1990
-
[19]
Surprise-based intrinsic motivation for deep reinforcement learning,
J. Achiam and S. Sastry, “Surprise-based intrinsic motivation for deep reinforcement learning,” arXiv preprint arXiv:1703.01732 , 2017
2017 arXiv
-
[20]
Curiosity-driven exploration by self- supervised prediction,
D. Pathak, P. Agrawal, A. A. Efros, and T. Darrell, “Curiosity-driven exploration by self- supervised prediction,” in International Conference on Machine Learning , pp. 2778–2787, PMLR, 2017
2017
-
[21]
Large-scale study of curiosity-driven learning,
Y. Burda, H. Edwards, D. Pathak, A. Storkey, T. Darrell, and A. A. Efros, “Large-scale study of curiosity-driven learning,” arXiv preprint arXiv:1808.04355 , 2018
2018 arXiv
-
[22]
Exploration by random network distilla- tion,
Y. Burda, H. Edwards, A. Storkey, and O. Klimov, “Exploration by random network distilla- tion,” arXiv preprint arXiv:1810.12894 , 2018
2018 arXiv
-
[23]
Randomized prior functions for deep reinforcement learning,
I. Osband, J. Aslanides, and A. Cassirer, “Randomized prior functions for deep reinforcement learning,” Advances in neural information processing systems , vol. 31, 2018
2018
-
[24]
Fast active learning for pure exploration in reinforcement learning,
P. M´ enard, O. D. Domingues, A. Jonsson, E. Kaufmann, E. Leurent, and M. Valko, “Fast active learning for pure exploration in reinforcement learning,” in International Conference on Machine Learning, pp. 7599–7608, PMLR, 2021
2021
-
[25]
# exploration: A study of count-based exploration for deep reinforcement learning,
H. Tang, R. Houthooft, D. Foote, A. Stooke, O. Xi Chen, Y. Duan, J. Schulman, F. DeTurck, and P. Abbeel, “# exploration: A study of count-based exploration for deep reinforcement learning,” Advances in neural information processing systems , vol. 30, 2017. 35
2017
-
[26]
Go-explore: A new approach for hard-exploration problems,
A. Ecoffet, J. Huizinga, J. Lehman, K. O. Stanley, and J. Clune, “Go-explore: A new approach for hard-exploration problems,” arXiv preprint arXiv:1901.10995 , 2019
1901 arXiv
-
[27]
First return, then explore,
A. Ecoffet, J. Huizinga, J. Lehman, K. O. Stanley, and J. Clune, “First return, then explore,” Nature, vol. 590, no. 7847, pp. 580–586, 2021
2021
-
[28]
Leveraging demonstrations for deep reinforcement learning on robotics problems with sparse rewards,
M. Vecerik, T. Hester, J. Scholz, F. Wang, O. Pietquin, B. Piot, N. Heess, T. Roth¨ orl, T. Lampe, and M. Riedmiller, “Leveraging demonstrations for deep reinforcement learning on robotics problems with sparse rewards,” arXiv preprint arXiv:1707.08817 , 2017
2017 arXiv
-
[29]
A comprehensive survey on safe reinforcement learning,
J. Garcıa and F. Fern´ andez, “A comprehensive survey on safe reinforcement learning,”Journal of Machine Learning Research, vol. 16, no. 1, pp. 1437–1480, 2015
2015
-
[30]
Trial without error: Towards safe reinforcement learning via human intervention,
W. Saunders, G. Sastry, A. Stuhlmueller, and O. Evans, “Trial without error: Towards safe reinforcement learning via human intervention,” arXiv preprint arXiv:1707.05173 , 2017
2017 arXiv
-
[31]
Policy gradient in continuous time,
R. Munos, “Policy gradient in continuous time,” Journal of Machine Learning Research, vol. 7, pp. 771–791, 2006
2006
-
[32]
Making deep Q-learning methods robust to time dis- cretization,
C. Tallec, L. Blier, and Y. Ollivier, “Making deep Q-learning methods robust to time dis- cretization,” in International Conference on Machine Learning , pp. 6096–6104, PMLR, 2019
2019
-
[33]
Time discretization-invariant safe action repetition for policy gradient methods,
S. Park, J. Kim, and G. Kim, “Time discretization-invariant safe action repetition for policy gradient methods,” Advances in Neural Information Processing Systems, vol. 34, pp. 267–279, 2021
2021
-
[34]
Optimal scheduling of entropy regularizer for continuous-time linear-quadratic reinforcement learning,
L. Szpruch, T. Treetanthiploet, and Y. Zhang, “Optimal scheduling of entropy regularizer for continuous-time linear-quadratic reinforcement learning,” SIAM Journal on Control and Optimization, vol. 62, no. 1, pp. 135–166, 2024
2024
-
[35]
Indefinite stochastic riccati equations,
Y. Hu and X. Y. Zhou, “Indefinite stochastic riccati equations,” SIAM Journal on Control and Optimization , vol. 42, no. 1, pp. 123–137, 2003
2003
-
[36]
Existence of solutions to a class of indefinite stochastic riccati equations,
Z. Qian and X. Y. Zhou, “Existence of solutions to a class of indefinite stochastic riccati equations,” SIAM journal on Control and Optimization , vol. 51, no. 1, pp. 221–229, 2013
2013
-
[37]
Reinforcement learning in continuous time and space: A stochastic control approach,
H. Wang, T. Zariphopoulou, and X. Y. Zhou, “Reinforcement learning in continuous time and space: A stochastic control approach,” Journal of Machine Learning Research, vol. 21, no. 198, pp. 1–34, 2020. 36
2020
-
[38]
Exploration-exploitation trade-off for continuous-time episodic reinforcement learning with linear-convex models,
L. Szpruch, T. Treetanthiploet, and Y. Zhang, “Exploration-exploitation trade-off for continuous-time episodic reinforcement learning with linear-convex models,” arXiv preprint arXiv:2112.10264, 2021
2021 arXiv
-
[39]
Policy gradient and actor-critic learning in continuous time and space: Theory and algorithms,
Y. Jia and X. Y. Zhou, “Policy gradient and actor-critic learning in continuous time and space: Theory and algorithms,” Journal of Machine Learning Research , vol. 23, no. 154, pp. 1–55, 2022
2022
-
[40]
Policy evaluation and temporal-difference learning in continuous time and space: A martingale approach,
Y. Jia and X. Y. Zhou, “Policy evaluation and temporal-difference learning in continuous time and space: A martingale approach,” Journal of Machine Learning Research , vol. 23, no. 154, pp. 1–55, 2022
2022
-
[41]
A stochastic approximation method,
H. Robbins and S. Monro, “A stochastic approximation method,” The Annals of Mathematical Statistics, pp. 400–407, 1951
1951
-
[42]
Stochastic approximation,
T. L. Lai, “Stochastic approximation,” The Annals of Statistics , vol. 31, no. 2, pp. 391–406, 2003
2003
-
[43]
V. S. Borkar, Stochastic approximation: A dynamical systems viewpoint , vol. 48. Springer, 2009
2009
-
[44]
An overview of stochastic approximation,
M. Chau and M. C. Fu, “An overview of stochastic approximation,” Handbook of Simulation Optimization, pp. 149–178, 2014
2014
-
[45]
A stochastic approximation algorithm with varying bounds,
S. Andrad´ ottir, “A stochastic approximation algorithm with varying bounds,”Operations Re- search, vol. 43, no. 6, pp. 1037–1048, 1995
1995
-
[46]
General bounds and finite-time improvement for the Kiefer-Wolfowitz stochastic approximation algorithm,
M. Broadie, D. Cicek, and A. Zeevi, “General bounds and finite-time improvement for the Kiefer-Wolfowitz stochastic approximation algorithm,” Operations Research, vol. 59, no. 5, pp. 1211–1224, 2011
2011
-
[47]
A convergence theorem for non negative almost supermartin- gales and some applications,
H. Robbins and D. Siegmund, “A convergence theorem for non negative almost supermartin- gales and some applications,” in Optimizing Methods in Statistics , pp. 233–257, Elsevier, 1971
1971
-
[48]
P. E. Kloeden and E. Platen, Numerical Solution of Stochastic Differential Equations , vol. 23. Springer, 1992
1992
-
[49]
Regret of exploratory policy improvement and q-learning,
W. Tang and X. Y. Zhou, “Regret of exploratory policy improvement and q-learning,” arXiv preprint arXiv:2411.01302, 2024. 37
2024 arXiv
Reviewed August 6, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.