Pith. sign in

REVIEW 3 major objections 5 minor 24 references

Convex-Hull-Neighborhood Smooth Dual Generalization: Controlling Local Correction Propagation in Offline RL

T0 review · 3 major / 5 minor · reviewed 2026-08-15 · deepseek-v4-flash

Pith's one-line read The paper proposes CSDG, which rewrites the offline Bellman backup as an in-sample expectile target plus a scaled local correction and reports top D4RL aggregates of 1199.4 and 445.8.

desk verdict The CSDG mechanism is genuinely new and the D4RL results are strong, but the theory covers only the fixed-kernel operator while the algorithm trains a time-varying one—a real gap worth closing in revision. read the letter →

arxiv 2608.03108 v1 pith:LDWZ75T2 submitted 2026-08-04 cs.LG cs.CL

classification cs.LGcs.CL
keywords offlinereinforcementlearningout-of-distributionactionslocalgeneralizationconvexhullneighborhoodexpectileregressionBellmanbackupbootstrappingerrorD4RLbenchmark
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

Offline reinforcement learning usually forces a choice between staying inside the logged data and risking overestimation from out-of-distribution actions. This paper proposes a third option: keep an in-sample expectile value as the base of every Bellman backup, and add a separately scaled correction built from actions perturbed just outside the data's local geometry. The correction is the difference between a smoothed value over small- and large-radius perturbations and the in-sample expectile, and a coefficient $\lambda$ controls how much of it propagates at each update while the discount remains $\gamma$. The paper derives an exact one-step identity, iterate and fixed-point bounds in terms of the branch discrepancy, and a conditional non-degradation criterion for the induced policies. It reports the top aggregate D4RL scores among the compared methods, 1199.4 on Gym–MuJoCo and 445.8 on AntMaze, and shows consistent gains when the correction is added to IQL and XQL.

What carries the argument

The load-bearing object is the CHN smooth dual-generalization operator. State-conditional CHN (convex hull and its neighborhood) is the geometric reference: for a state $s$, it is the set of actions within radius $\delta$ of the convex hull of the $k$ nearest dataset actions. The two-scale smoother averages values $S_\mu Q(s) = \mu\mathbb{E}[Q(s,a_{\mathrm{In}})] + (1-\mu)\mathbb{E}[Q(s,a_{\mathrm{OOD}})]$ over in-sample-oriented and OOD-oriented candidates sampled at radii $\delta_{\mathrm{In}} < \delta_{\mathrm{OOD}}$. The expectile functional $V_\tau^Q(s)$ supplies the in-sample reference, and the difference $B^\tau_{\mathrm{CHN}} Q(s) = S_\mu Q(s) - V_\tau^Q(s)$ is the local correction gated by $\lambda$ inside each backup. The argument works because $S_\mu$ and the expectile map are non-expansive, making both $T_{\mathrm{CSDG}}$ and the in-sample operator $\gamma$-contractions; the nearest-anchor decomposition then splits the branch discrepancy into a geometric term and a reference term.

What would settle it

Run Algorithm 1 with $\lambda=1$ and a fast-updating target actor, recording the empirical branch discrepancy $\|S_\mu Q - V_\tau^Q\|_\infty$ and the distance from the learned critic to the in-sample critic's fixed point over iterations; if the distance grows faster than $\gamma\lambda\sum_{t=0}^{k-1}\gamma^{k-1-t}e_t$ or exceeds $\gamma\lambda e^*/(1-\gamma)$, the fixed-kernel contraction premise is violated and the advertised bounds do not govern the trained critic.

Watch

Extended reading notes

Core claim

The central claim is that the Bellman backup for offline RL can be decomposed as $T_{\mathrm{CSDG}} Q(s,a) = R(s,a) + \gamma \mathbb{E}_{s'\sim P}[V_\tau^Q(s') + \lambda(S_\mu Q(s') - V_\tau^Q(s'))]$, where $V_\tau^Q$ is the in-sample expectile value and $S_\mu Q$ is a smoothed value obtained by averaging over small-radius (in-sample-oriented) and larger-radius (OOD-oriented) perturbations of a fixed target action. The difference $S_\mu Q - V_\tau^Q$ is the 'local correction,' and $\lambda$ scales how much of that generalization enters each recursive update while the discount stays $\gamma$. The paper proves an exact one-step identity, a time-varying iterate bound, and a fixed-point bound $\|Q^*_{\mathrm{CSDG}} - Q^*_{\mathrm{In}}\|_\infty \le \gamma\lambda e^*/(1-\gamma)$, where $e^*$ is the branch discrepancy at the fixed point, and shows that the fixed points are value functions of explicit induced policies. It then translates these into a practical algorithm using asymmetric bounded noise and expectile regression, without exact support classification or a pessimistic OOD penalty.

Load-bearing premise

The bounds hold for a fixed deterministic target action selector and fixed perturbation kernels, whereas the implemented algorithm updates its target actor during training and uses one Monte Carlo sample per kernel, with a learned expectile network in place of the exact functional.

Editorial extensions

If this is right

  • A single scalar $\lambda$ becomes an interpretable dial for how much OOD value enters each Bellman update, with the per-step contribution exactly $\gamma\lambda$ times the expected smoothed-versus-in-sample gap.
  • Because the operator is a $\gamma$-contraction under fixed kernels, CSDG inherits the stable fixed-point behavior of in-sample learning rather than the overestimation typical of OOD maximization.
  • The induced-policy result gives a testable non-degradation criterion: if $\lambda g_\mu \ge (1-\lambda)\xi$, the CSDG fixed point does not underperform the in-sample reference.
  • The practical recipe needs no behavior model, no exact support classification, and no additional pessimistic penalty, so it can be grafted onto in-sample methods; the paper shows it improves both IQL and XQL on every evaluated locomotion task.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • The dual-target decomposition is likely portable: any in-sample learner that exposes an expectile or softmax value could accept the same correction term, and an adaptive $\lambda$ scheduled from the measured branch discrepancy would tighten the iterate bound during training—neither of which the paper tests.
  • Because the fixed-point bound depends only on the branch discrepancy $e^*$, monitoring $\|S_\mu Q - V_\tau^Q\|_\infty$ during training could serve as an early-warning diagnostic for value instability; the paper notes it does not track anchoring geometry during training.
  • The proof's fixed-kernel assumption suggests the algorithm's stability is coupled to slow target-actor updates; a variant that adapts the smoothing kernels online would need a time-varying contraction argument beyond the one in the appendix.
Share X Bluesky LinkedIn Reddit HN

Signed reviews

No signed human review yet.

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

3 major / 5 minor

Summary. The paper proposes CSDG, a Bellman backup that adds a convex-hull-neighborhood smoothed local correction to an in-sample expectile target, with a scalar λ gating how much of the correction enters each recursive update. The theoretical part defines an idealized operator (Definition 3, Eq. (7)), proves an exact one-step decomposition, iterate and fixed-point bounds under fixed perturbation kernels, and a conditional induced-policy performance comparison. The practical part (Section 3.4, Algorithm 1) instantiates the idea with two-scale bounded noise, an expectile value network, twin critics, and a delayed actor, and reports D4RL aggregates of 1199.4 on Gym-MuJoCo and 445.8 on AntMaze.

Significance. If the theory governed the implemented algorithm, the operator-level decomposition would be a conceptually clean way to separate an in-sample reference path from a locally generalized correction, and the reported broad empirical gains would be valuable. The proofs in Appendix D are careful and the operator identities in Theorems 1 and 4 are correct under the stated idealized assumptions; the empirical study is broad, with ablations, learning curves, and code. However, the main theoretical guarantees are proven only for a fixed-kernel operator, while the reported algorithm uses a time-varying target actor, single-sample Monte Carlo targets, and a learned expectile surrogate. This mismatch means the central control claim currently applies to an idealized object, not to the algorithm whose scores are the headline evidence. The concern raised in the stress test is therefore valid and is the primary reason the paper needs substantial revision.

major comments (3)
  1. [§3.4, Algorithm 1, and Appendix D] The theoretical operator T_CSDG in Definition 3 (Eq. (7)) and the contraction, iterate, and fixed-point results in Theorems 2–4 require a fixed deterministic target action selector π' and fixed perturbation kernels ν_In and ν_OOD; Appendix D states this condition explicitly at its opening. Algorithm 1 instead updates the target actor π_φ' by Polyak averaging (Step 8), and the actor loss in Eq. (17) depends on Q_θ and V_ψ, so the perturbation center changes during training. Moreover, Eq. (19) forms the smoothed target from one Monte Carlo pair per kernel, and Eq. (20) replaces the exact expectile V^{Q_θ'}_τ with the learned V_ψ. The paper acknowledges the V_ψ residual in Section 3.4 but provides no bound on it, no bound on the Monte Carlo variance, and no bound on the drift of π_φ'. Consequently, the object updated by Eqs. (18)–(21) is not shown to be near a fixed point of T_CSDG, and Theorems 2 and 3 do not govern the D4RL results in Table 2. Please either supply approximation-error and drift bounds that cover the practical update, or explicitly restrict the theoretical claims to the idealized operator and describe the practical target as a heuristic approximation.
  2. [§3.3, Eq. (12)] The fixed-point bound ||Q*_CSDG − Q*_In||_∞ ≤ γλe*/(1−γ) has e* = ||S_μQ*_CSDG − V^{Q*_CSDG}_τ||_∞ on its right-hand side, which is exactly the branch discrepancy that the correction is supposed to control. The theorem does not provide an upper bound on e* in terms of independent quantities such as Lipschitz constants of Q, the perturbation radii δ_In and δ_OOD, dataset coverage, or λ; the companion residual bound for a general κμ likewise involves e(Q̄) without control. Thus Eq. (12) is a valid a posteriori identity, but by itself it does not establish that CSDG controls local correction propagation. An a priori bound on e*, or a precise statement of the conditions under which e* is provably small, is needed to support the paper's central claim.
  3. [§3.3, Eq. (14)] The non-degradation criterion λg_μ ≥ (1−λ)ξ is exactly the nonnegativity condition for the expression λg_μ − (1−λ)ξ appearing in the preceding line, and the quantities g_μ and ξ are not bounded or connected to the discrepancy e* or to the perturbation radii. As stated, the criterion cannot be checked from the data or from the analysis, and it does not provide an actionable rule for selecting λ, such as the paper's fixed choice λ=0.25. Please either provide concrete conditions under which g_μ and ξ can be bounded, or rephrase this result explicitly as a consistency statement rather than a design criterion.
minor comments (5)
  1. [Eq. (15)] The weight w(s,a) uses a clipping constant w_max that is never defined or listed in Table 5; please add its value or a reference to the TD3BC-style setting.
  2. [Table 2] The column header 'CQL+C4' is ambiguous: it is unclear whether this is a single method combining CQL and C4 or a typo; please clarify and ensure the relevant reference is cited.
  3. [§4.2, Table 3] The text says CSDG consistently improves both tested in-sample backbones across all D4RL v2 locomotion tasks, but Table 3 reports only the medium, medium-replay, and medium-expert subsets; please qualify the claim accordingly.
  4. [Table 5] The behavior-cloning coefficient ν is listed as '0.1 or 10 for Gym locomotion'; please state explicitly which datasets receive which value.
  5. [§4.1] The aggregate scores in Table 2 are reported without standard deviations or significance tests, and some tasks are decided by small margins; please report per-seed aggregates or state that baseline aggregates are taken from the original papers.

Circularity Check

0 steps flagged · score 0.0 of 10

No circularity: the paper's operator identities and bounds are algebraic consequences of its definitions, and the empirical claims rest on external D4RL benchmarks rather than on the theorem statements.

full rationale

I checked the derivation chain for the seven enumerated circularity patterns and found no load-bearing step in which a prediction reduces to a fitted input, a self-citation, or a definitional equivalence. Theorem 1 is an exact identity obtained by subtracting the in-sample operator from the CSDG operator; the paper explicitly calls it an identity, and subtracting two definitions is not a circular prediction. Theorem 2's iterate and fixed-point bounds are genuine consequences of the contraction argument proved in Appendix D.1. The right-hand sides contain the branch discrepancy e*, but e* is an independent quantity defined as the sup-norm of S_mu Q - V_tau^Q; the theorem does not assert that e* is small by construction. It is an a posteriori bound of the standard form, and the paper does not rename e* as a controlled or predicted quantity. Theorem 3 is explicitly conditional on unverified advantage bounds (G_tau >= -xi, G_mu >= g_mu); such a conditional criterion is not circular, though it limits the strength of the performance claim. The practical algorithm uses a learned V_psi and a changing target actor, while the theory assumes fixed kernels and the exact expectile; Section 3.4 states this gap by noting that practical performance also depends on the residual sup_s |V_psi(s) - V_tau^{Q_theta'}(s)| and optimization error. This is a theory-practice gap, not a circularity. The CHN geometry is cited from SQOG, an external prior work with no author overlap, so there is no self-citation chain carrying the load. The empirical D4RL aggregates are benchmark measurements against external baselines; even though hyperparameters are tuned via ablations, no fitted parameter is relabeled as a prediction of the theorems. I therefore find no specific reduction of a claimed output to an input, and the appropriate score is 0.

Assumptions & free parameters 6 free parameters · 5 assumptions · 0 invented entities

The practical algorithm depends on several tuned scalar hyperparameters, including lambda, mu, noise scale and clip, nu, tau, and alpha. The theoretical guarantees require an idealized fixed-kernel operator whose assumptions the implementation does not exactly satisfy. The proofs rely on standard contraction and performance-difference machinery, plus a stated but unquantified value-network approximation residual.

free parameters (6)
  • lambda (correction weight) = 0.25
    Scales how much of the CHN-local correction enters each backup; chosen from a sweep over {0, 0.25, 0.5, 0.75, 1} in Section 4.3 and Appendix C.5.
  • mu (candidate mixture weight) = 0.5
    Weights the in-sample-oriented versus OOD-oriented smoothed candidates; tuned by ablation in Figures 3(c-d) and 5(c-d).
  • Gaussian noise scale and clip value = scale=0.6, clip=0.5
    Determines the perturbation radii in Eq. (4) and the practical target in Eq. (19); selected from the Table 4 sweep over four settings.
  • nu (behavior-cloning coefficient) = 0.1, 10, or 0.5 per task
    Balances Q-maximization and advantage-weighted behavior cloning in the actor loss Eq. (17); dataset-dependent values are given in Appendix A.
  • expectile tau = 0.7 for Gym locomotion, 0.9 for AntMaze
    Defines the in-sample expectile reference V_tau^Q in Eq. (6); inherited from the IQL configuration and set per domain.
  • inverse temperature alpha = 3.0 for Gym, 10.0 for AntMaze, 5.0 for XQL backbone
    Controls advantage weighting in Eq. (15); taken from IQL and XQL baselines rather than newly fitted.
assumptions (5)
  • domain assumption Fixed deterministic target action selector pi' and fixed bounded perturbation kernels nu_In and nu_OOD during the analysis
    Definition 2 and Appendix D.1 use the same candidate actions for every Q to prove non-expansiveness of S_mu and contraction of T_CSDG; the practical actor changes during training.
  • standard math Measurability and boundedness of rewards, transitions, perturbation kernels, and tie-breaking rules
    Assumed before Definition 2 so both Bellman operators map B_b(S x A) into itself, which is standard for contraction arguments.
  • standard math The expectile objective is strictly convex with a unique minimizer and satisfies the first-order condition
    Used to define V_tau^Q in Eq. (6) and to derive the induced policy representation in Theorem 5.
  • domain assumption Bellman evaluation is a gamma-contraction with a unique fixed point, and the performance-difference lemma holds
    Used in Theorem 3 to identify fixed points with policy value functions and to express J(pi*_CSDG) minus J(pi*_In) through averaged advantages.
  • domain assumption The learned value network V_psi approximates the exact expectile functional V_tau^{Q_theta'} with small residual
    Section 3.4 admits that practical performance depends on sup_s |V_psi(s) - V_tau^Q(s)| and optimization error, but no bound or explicit control is provided.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Convex-Hull-Neighborhood Smooth Dual Generalization: Controlling Local Correction Propagation in Offline RL." pith.science (2026). https://pith.science/paper/LDWZ75T2

@misc{pith2026260803108,
  author       = {Pith},
  title        = {Pith review of: Convex-Hull-Neighborhood Smooth Dual Generalization: Controlling Local Correction Propagation in Offline RL},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/LDWZ75T2}},
  note         = {Machine review of arXiv:2608.03108}
}
read the original abstract

Offline reinforcement learning (offline RL) can benefit from nearby out-of-distribution (OOD) actions, but estimation errors at these actions may be amplified by bootstrapping. Existing regularization and local-generalization methods control either the admissible OOD region or the influence of generalized targets, often through separate mechanisms. We propose Convex Hull Neighborhood Smooth Dual Generalization (CSDG), which expresses the Bellman backup as an in-sample value target plus a CHN-local correction. This formulation makes the generalized contribution explicit and separates it from the in-sample reference path. The correction is obtained by smoothing in-sample-oriented and OOD-oriented candidates sampled at different perturbation radii. A mixture coefficient lambda scales its contribution to each backup, while the recursive discount remains gamma. Under boundedness and fixed perturbation kernels, we derive an exact one-step correction identity, a time-varying iterate bound, and a fixed-point bound that depends only on the branch discrepancy at the fixed point. We further characterize the implicit policies induced by the idealized operators and give a conditional non-degradation criterion. The practical algorithm approximates these quantities using asymmetric bounded noise and expectile regression, without exact support classification or an additional pessimistic OOD penalty. Experiments on Gym-MuJoCo and AntMaze show strong aggregate performance and stable value estimation. Code is available at: https://github.com/YOUNG-fnxm/CSDG

Figures

Figures reproduced from arXiv: 2608.03108 by the authors.

Figure 1
Figure 1. Schematic illustration of discrep￾ancy propagation under repeated bootstrap￾ping. The CSDG correction reduces the con￾tribution of locally generalized values while retaining the same recursive discount. To answer this question, we build on the Convex Hull and its Neighborhood (CHN) (Yao et al., 2025) and introduce CHN Smooth Dual Generalization (CSDG). CSDG organizes local smoothing and prop￾agation control through … view at source ↗
Figure 2
Figure 2. gives an overview. We first define the asymmetric smoothing target and its expectile￾referenced correction, analyze it at the one-step, iterative, fixed-point, and policy levels, and then describe the practical algorithm. 3.1 CHN Smooth Dual Generalization [PITH_FULL_IMAGE:figures/full_fig_p003_2.png] view at source ↗
Figure 3
Figure 3. Performance and Q-value estimates of CSDG under different values of the propagation [PITH_FULL_IMAGE:figures/full_fig_p009_3.png] view at source ↗
Figures from the paper (7 more)
Figure 4
Figure 4. Figure 4: Return and Q-value estimates of DMG and CSDG under different values of the generalized [PITH_FULL_IMAGE:figures/full_fig_p017_4.png]
Figure 5
Figure 5. Figure 5: Sensitivity to the correction weight λ (a–b) and the candidate mixture weight µ (c–d) on walker2d-medium-expert and antmaze-large-diverse. Results are averaged over five random seeds [PITH_FULL_IMAGE:figures/full_fig_p017_5.png]
Figure 6
Figure 6. Figure 6: Performance under different Gaussian noise scales and clipping values on hopper-medium [PITH_FULL_IMAGE:figures/full_fig_p017_6.png]
Figure 7
Figure 7. Figure 7: (a) Absolute Q-value bias on hopper-medium-v2. Shaded regions show one standard [PITH_FULL_IMAGE:figures/full_fig_p018_7.png]
Figure 8
Figure 8. Figure 8: Normalized returns under observation and action perturbations on three Gym medium [PITH_FULL_IMAGE:figures/full_fig_p019_8.png]
Figure 9
Figure 9. Figure 9: Learning curves of CSDG on the Gym locomotion tasks. [PITH_FULL_IMAGE:figures/full_fig_p020_9.png]
Figure 10
Figure 10. Figure 10: Learning curves of CSDG on the AntMaze tasks. [PITH_FULL_IMAGE:figures/full_fig_p020_10.png]

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

24 extracted references · 6 canonical work pages

  1. [1]

    ChenjiaBai, LingxiaoWang,Zhuoran Yang,ZhihongDeng, AnimeshGarg, PengLiu,and Zhaoran Wang

    AnuragAjay,AviralKumar,PulkitAgrawal,SergeyLevine,andOfirNachum.Opal:Offlineprimitive discoveryforacceleratingofflinereinforcementlearning.arXivpreprintarXiv:2010.13611,2020. ChenjiaBai, LingxiaoWang,Zhuoran Yang,ZhihongDeng, AnimeshGarg, PengLiu,and Zhaoran Wang. Pessimistic bootstrapping for uncertainty-driven offline reinforcement learning.arXiv prepri...

  2. [5]

    Off-policy deep reinforcement learning without exploration

    Scott Fujimoto, David Meger, and Doina Precup. Off-policy deep reinforcement learning without exploration. InInternational conference on machine learning, pp. 2052–2062. PMLR,

  3. [7]

    Improving offline rl by blending heuristics.arXiv preprint arXiv:2306.00321,

    Sinong Geng, Aldo Pacchiano, Andrey Kolobov, and Ching-An Cheng. Improving offline rl by blending heuristics.arXiv preprint arXiv:2306.00321,

  4. [8]

    Offline reinforcement learning with implicit q- learning.arXiv preprint arXiv:2110.06169,

    Ilya Kostrikov, Ashvin Nair, and Sergey Levine. Offline reinforcement learning with implicit q- learning.arXiv preprint arXiv:2110.06169,

  5. [9]

    Conservative q-learning for offline reinforcementlearning.Advancesinneuralinformationprocessingsystems,33:1179–1191,2020

    Aviral Kumar, Aurick Zhou, George Tucker, and Sergey Levine. Conservative q-learning for offline reinforcementlearning.Advancesinneuralinformationprocessingsystems,33:1179–1191,2020. Sascha Lange, Thomas Gabel, and Martin Riedmiller. Batch reinforcement learning. InReinforce- ment learning: State-of-the-art, pp. 45–73. Springer,

  6. [10]

    Offlinereinforcementlearning:Tutorial, review, and perspectives on open problems.arXiv preprint arXiv:2005.01643,

    SergeyLevine,AviralKumar,GeorgeTucker,andJustinFu. Offlinereinforcementlearning:Tutorial, review, and perspectives on open problems.arXiv preprint arXiv:2005.01643,

  7. [11]

    When data geometry meets deep function: Generalizing offline reinforcement learning.arXiv preprint arXiv:2205.11027,

    Jianxiong Li, Xianyuan Zhan, Haoran Xu, Xiangyu Zhu, Jingjing Liu, and Ya-Qin Zhang. When data geometry meets deep function: Generalizing offline reinforcement learning.arXiv preprint arXiv:2205.11027,

  8. [12]

    Off-policypolicygradientwith state distribution correction.arXiv preprint arXiv:1904.08473,

    YaoLiu,AdithSwaminathan,AlekhAgarwal,andEmmaBrunskill. Off-policypolicygradientwith state distribution correction.arXiv preprint arXiv:1904.08473,

Show all 24 references
  1. [14]

    Awac: Accelerating online reinforcement learning with offline datasets.arXiv preprint arXiv:2006.09359,

    Ashvin Nair, Abhishek Gupta, Murtaza Dalal, and Sergey Levine. Awac: Accelerating online reinforcement learning with offline datasets.arXiv preprint arXiv:2006.09359,

  2. [15]

    Advantage-weighted regression: Simple and scalable off-policy reinforcement learning.arXiv preprint arXiv:1910.00177,

    Xue Bin Peng, Aviral Kumar, Grace Zhang, and Sergey Levine. Advantage-weighted regression: Simple and scalable off-policy reinforcement learning.arXiv preprint arXiv:1910.00177,

  3. [19]

    Uncertainty weighted actor-critic for offline reinforcement learning.arXiv preprint arXiv:2105.08140,

    YueWu,ShuangfeiZhai,NitishSrivastava,JoshuaSusskind,JianZhang,RuslanSalakhutdinov,and Hanlin Goh. Uncertainty weighted actor-critic for offline reinforcement learning.arXiv preprint arXiv:2105.08140,

  4. [20]

    The in-sample softmax for offline reinforcement learning.arXiv preprint arXiv:2302.14372,

    Chenjun Xiao, Han Wang, Yangchen Pan, Adam White, and Martha White. The in-sample softmax for offline reinforcement learning.arXiv preprint arXiv:2302.14372,

  5. [22]

    Offline rl with smooth ood generalization in convex hull and its neighborhood

    Qingmao Yao, Zhichao Lei, Tianyuan Chen, Ziyue Yuan, Xuefan Chen, Jianxiang Liu, Faguo Wu, and Xiao Zhang. Offline rl with smooth ood generalization in convex hull and its neighborhood. arXiv preprint arXiv:2506.08417,

  6. [23]

    For Gym locomotion, each evaluation uses 10 trajectories, whereas each AntMaze evaluation uses 100 trajectories

    13 Preprint Appendix A Experimental Details A.1 Experimental Details in Offline Experiments We follow the standard D4RL evaluation protocol (Fu et al., 2020). For Gym locomotion, each evaluation uses 10 trajectories, whereas each AntMaze evaluation uses 100 trajectories. The m...

  7. [24]

    The mixture coefficient directly controls the amount of generalized information propagated by bootstrapping

    defines a mildly generalized policy and blends its value with an in-sample value inside the Bellman target. The mixture coefficient directly controls the amount of generalized information propagated by bootstrapping. CSDG combines the CHN geometric reference with an expectile-...

  8. [2001]

    Less is more: Clustered cross-covariance control for offline rl.arXiv preprint arXiv:2601.20765,

    12 Preprint Nan Qiao, Sheng Yue, Shuning Wang, Yongheng Deng, and Ju Ren. Less is more: Clustered cross-covariance control for offline rl.arXiv preprint arXiv:2601.20765,

  9. [2016]

    Uniq: Conformal calibration for adaptive conservatism in offline reinforcement learning.arXiv preprint arXiv:2606.07592,

    Aditya Upadhyay. Uniq: Conformal calibration for adaptive conservatism in offline reinforcement learning.arXiv preprint arXiv:2606.07592,

  10. [2018]

    Behavior regularized offline reinforcement learning

    Yifan Wu, George Tucker, and Ofir Nachum. Behavior regularized offline reinforcement learning. arXiv preprint arXiv:1911.11361,

  11. [2019]

    Extreme q-learning: Maxent rl without entropy.arXiv preprint arXiv:2301.02328,

    Divyansh Garg, Joey Hejna, Matthieu Geist, and Stefano Ermon. Extreme q-learning: Maxent rl without entropy.arXiv preprint arXiv:2301.02328,

  12. [2020]

    Um- brella: Uncertainty-aware model-based offline reinforcement learning leveraging planning.arXiv preprint arXiv:2111.11097,

    Christopher Diehl, Timo Sievernich, Martin Krüger, Frank Hoffmann, and Torsten Bertram. Um- brella: Uncertainty-aware model-based offline reinforcement learning leveraging planning.arXiv preprint arXiv:2111.11097,

  13. [2021]

    D4rl: Datasets for deep data-driven reinforcement learning.arXiv preprint arXiv:2004.07219,

    Justin Fu, Aviral Kumar, Ofir Nachum, George Tucker, and Sergey Levine. D4rl: Datasets for deep data-driven reinforcement learning.arXiv preprint arXiv:2004.07219,

  14. [2022]

    Flow actor-critic for offline reinforcement learning.arXiv preprint arXiv:2602.18015,

    JongseongChae,JongeuiPark,YongjaeShin,GyeongminKim,SeungyulHan,andYoungchulSung. Flow actor-critic for offline reinforcement learning.arXiv preprint arXiv:2602.18015,

  15. [2023]

    arXiv preprint arXiv:2303.15810,

    Haoran Xu, Li Jiang, Jianxiong Li, Zhuoran Yang, Zhaoran Wang, Victor Wai Kin Chan, and XianyuanZhan.Offlinerlwithnooodactions:In-samplelearningviaimplicitvalueregularization. arXiv preprint arXiv:2303.15810,

  16. [2024]

    Deployment- efficient reinforcement learning via model-based offline optimization.arXiv preprint arXiv:2006.03647,

    Tatsuya Matsushima, Hiroki Furuta, Yutaka Matsuo, Ofir Nachum, and Shixiang Gu. Deployment- efficient reinforcement learning via model-based offline optimization.arXiv preprint arXiv:2006.03647,

Pith tools

Reviewed August 15, 2026 · model on record in the stance chip above.